Fix varargs invocation from luajava #95
Reference in New Issue
Block a user
Delete Branch "yut23/fix-luajava-varargs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The arguments for a varargs method/constructor should be the fixed arguments, followed by an array of the variable arguments, rather than a flat array of all the arguments (see §15.12.4.2 of the Java language specs).
This allows varargs methods to be called from luajava:
Fixed
Pull request closed