Lines Matching defs:test_parse_error
15 function test_parse_error (txt) {
27 test_parse_error (if1)
29 test_parse_error ("if (true)() { print ('t') }")
30 test_parse_error ("if {} (true) print ('t')")
31 test_parse_error ("if (true false) print ('t')")
32 test_parse_error ("if (true && || false) print ('t')")
33 test_parse_error ("if (&& true) print ('t')")
34 test_parse_error ("if (true ||) print ('t')")
35 test_parse_error ("if (true && {false || true}) print ('t')")
41 test_parse_error (elseif1);
47 test_parse_error (elseif2)
53 test_parse_error (elseif3)