Annotation of parser3/tests/427.html, revision 1.2

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: 
                     17: 3. array kept: ^a.create[] ^json:string[$a]
                     18:    or added: ^a.create[ $.3[3] ] ^json:string[$a]
1.2     ! moko       19:    or ignored ^a.create[$a] ^json:string[$a]
        !            20: 
1.1       moko       21: 4. array kept: ^a.new[] ^json:string[$a]
                     22:    or added: ^a.new[4] ^json:string[$a]
                     23:    or nested: ^a.new[$a] ^try-catch{ ^json:string[$a] }

E-mail: