Annotation of parser3/tests/377.html, revision 1.1
1.1 ! moko 1: @main[]
! 2: 1. continue in body does not influence delimiter code and vice versa
! 3: ^for[i](1;10){body$i %^if($i>4){^continue[]}%}{, [$i] =^if($i>8){^continue[]}=}
! 4: 2. break can be called from delimiter
! 5: ^for[i](1;8){body$i}{, [$i] =^if($i>4){^break[]}=}
! 6: 3. break in body still allows next delimiter execution
! 7: ^for[i](1;8){body$i =^if($i>4){^break[]}=}{, [$i] }
! 8: 4. continue in delimiter called after and thus has precedence over break in body
! 9: ^for[i](1;8){body$i =^if($i>4){^break[]}=}{, [$i] %^continue[]%}
! 10: 5. ^^break[] can be passed to break from the called method inner cicle
! 11: ^test5{ =^break[]= }
! 12:
! 13: @test5[code]
! 14: ^while(1){ %$code% }
E-mail: