VRL-Studio / VRL

Visual Reflection Library
http://vrl.mihosoft.eu
29 stars 18 forks source link

Support Array Element Access #40

Open miho opened 9 years ago

miho commented 9 years ago

Accessing elements is currently not supported.

int[] array = // ...
int v = array[0]; // causes parse error
miho commented 9 years ago

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