1: doctype "../grammars/EJ.g.etl" context "MethodContent";
2:
3: ["Hello, World!", new Integer(0), 24];
4: [1, new Integer(0), 24];
5: [1, 2, 24];
6:
7: new String(bigString.substring(bigString.length()-2));
8:
9: new array[array[int]](10);
10: new array[array[int]](10,10);
11: new array[array[String]] with [[null,"b","c"],null,["a","b",null]];
12:
13: new Runnable() {
14: to public void run() {System.out.println("Hello, World!");};
15: };
16:
17: someObject.new TestClass() { to public int test() {return 0;};};
18:
19: new String('a').substring(1);