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