Annotation of parser3/tests/427.html, revision 1.3
1.1 moko 1: Constructors as methods:
2:
3: $t[^table::create{data
4: data1
5: data2}]
6:
7: 1. table cleared: ^t.create{} ^json:string[$t]
8:
9: $h[ $.1[1] $.2[2] ]
10:
11: 2. hash kept: ^h.create[] ^json:string[$h]
12: or added : ^h.create[ $.3[3] ] ^json:string[$h]
13: or ignored ^h.create[$h] ^json:string[$h]
14:
15: $a[1;2]
16:
1.3 ! moko 17: 3. array kept: ^a.copy[] ^json:string[$a]
! 18: or added: ^a.copy[ $.3[3] ] ^json:string[$a]
! 19: or ignored ^a.copy[$a] ^json:string[$a]
1.2 moko 20:
1.3 ! moko 21: 4. array kept: ^a.create[] ^json:string[$a]
! 22: or added: ^a.create[4] ^json:string[$a]
! 23: or nested: ^a.create[$a] ^try-catch{ ^json:string[$a] }
E-mail: