Currently the following will not compile to valid Java code from FabIL:
public class Test {
public void foo() {
int[] foobar = {1, 2, 3};
}
}
The array declaration and initializer will be compiled into the following line of Java:
fabric.lang.arrays.intArray foobar = fabric.lang.WrappedJavaInlineable.$wrap({1, 2, 3}); which is invalid Java code.
Currently the following will not compile to valid Java code from FabIL:
The array declaration and initializer will be compiled into the following line of Java:
fabric.lang.arrays.intArray foobar = fabric.lang.WrappedJavaInlineable.$wrap({1, 2, 3});
which is invalid Java code.