You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Varargs parsed as java.NativeArray<T>, while it should be haxe.extern.Rest<T>
E.g. java signature of java.nio.file.Paths.get is public static Path get(String first, String... more)
But using it from Haxe as a method with rest arguments fails:
While working on a fix I suddenly understood there's currently no way to pass a native array of values if that was parsed as haxe.extern.Rest.
So, #9274 should be addressed first.
Varargs parsed as
java.NativeArray<T>
, while it should behaxe.extern.Rest<T>
E.g. java signature of
java.nio.file.Paths.get
ispublic static Path get(String first, String... more)
But using it from Haxe as a method with rest arguments fails:
error:
The text was updated successfully, but these errors were encountered: