--- parser3/tests/275.html 2012/05/23 20:50:49 1.1 +++ parser3/tests/275.html 2015/02/20 02:39:20 1.4 @@ -3,15 +3,52 @@ ^math:convert[F0000000](16;2) ^math:convert[-F0000000](16;2) -^try_catch{ - $d(^math:convert[10000000000000000](16;2)) +^try-catch{ + $d(^math:convert[100000000](16;2)) } -@try_catch[code] -^try{ - $code -}{ - $exception.handled(true) - $exception.source - $exception.comment +$d(2) + +^try-catch{ + ^d.div(0) +} +^try-catch{ + ^d.mod(0) +} + +$s[011] +test oct support disabled: ^s.int[] ^s.double[] + +$s[2] +$i(^s.int[]) + +^try-catch{ + ^i.div(0) +} +^try-catch{ + ^i.mod(0) +} + +$s[0x100000000] +$s as int: ^try-catch{ + ^s.int[] } + +$s as double: ^try-catch{ + ^s.double[] +} + + +$s[0x7FFFFFFF] +$s as int: ^s.int[] + +$s[-0x80000000] +$s as int: ^s.int[] + +$s[0x80000000] + +$s as double: ^s.double[] +as int: ^try-catch{ + ^s.int[] +} +