Annotation of parser3/tests/281.html, revision 1.1
1.1 ! moko 1: @main[]
! 2:
! 3: $h[ $.key[value] ]
! 4: ^h.foreach[k;v]{ ^test[$h] }
! 5:
! 6: @test[h]
! 7: non-blocking hash operations:
! 8:
! 9: ^h._count[]
! 10: $k[^h._keys[]]
! 11: $h2[^hash::create[$h]]
! 12: $b[^h.contains[key]]
! 13: ^h.foreach[k;v]{$k=>$v}
! 14: ^h._at(0)
! 15:
! 16: blocking hash operations:
! 17:
! 18: $h2[ $.k[v] ]
! 19: ^try_catch{ ^h2.sub[$h] }
! 20: ^try_catch{ $h.k[v] }
! 21: ^try_catch{ ^h.delete[k] }
! 22:
! 23: @try_catch[code]
! 24: ^try{
! 25: $code
! 26: }{
! 27: $exception.handled(true)
! 28: $result[Exception: $exception.source - $exception.comment]
! 29: }
E-mail: