parserapi_strict.js.EXPECTED revision 1668:bafd733be429
1with_stat.js:2:1 "with" statement cannot be used in strict mode
2
3with({}) {}
4 ^
5with_stat.js:2:7 Expected ; but found )
6
7with({}) {}
8       ^
9repeat_param.js:2:18 strict mode function cannot have duplicate parameter name "x"
10
11function func(x, x) {}
12                  ^
13repeat_prop.js:2:22 Property "foo" already defined
14
15var obj = { foo: 34, foo: 'hello' };
16                      ^
17