VRL icon indicating copy to clipboard operation
VRL copied to clipboard

Support Array Element Access

Open miho opened this issue 11 years ago • 1 comments

Accessing elements is currently not supported.

int[] array = // ...
int v = array[0]; // causes parse error

miho avatar Nov 23 '14 20:11 miho

support is still not optimal since array-elem-access is done via operator-invocation (which requires a separate window/node).

Sample code:

public class MainArrays {


    public static void main(String[] args) {
        String s;
        s = (args[0]);
        println(s);
    }
}

Screenshots:

vrl-arrays-02

Screenshot

miho avatar Nov 24 '14 14:11 miho