parserapi_nse.js.EXPECTED revision 1204:9597425b6b38
1cond_catch.js:4:11 Expected ) but found if
2} catch (e if e instanceof ReferenceError) {}
3           ^
4func_closure.js:2:19 Expected { but found x
5
6function square(x) x*x;
7                   ^
8for_each.js:2:4 Expected ( but found each
9
10for each (arg in arguments) print(arg);
11    ^
12anon_new.js:2:33 Expected ; but found {
13
14var r = new java.lang.Runnable() {
15                                 ^
16anon_new.js:3:18 Expected ident but found (
17     run: function() { print("hello") }
18                  ^
19anon_new.js:4:0 Expected eof but found }
20};
21^
22anon_func_stat.js:2:9 Expected ident but found (
23
24function () { print("hello") }
25         ^
26backquote.js:1:0 Expected an operand but found error
27`ls`
28^
29backquote1.js:1:0 Expected an operand but found error
30`ls`
31^
32heredoc.js:1:10 Expected an operand but found <<
33var str = <<EOF
34          ^
35heredoc1.js:1:10 Expected an operand but found <<
36var str = <<EOF
37          ^
38hashcomment.js:1:0 Expected an operand but found error
39#comment
40^
41hashcomment1.js:1:0 Expected an operand but found error
42#comment
43^
44