nashorn/test/script/nosecurity/parserapi_strict.js.EXPECTED
author mhaupt
Fri, 15 May 2015 10:21:48 +0200
changeset 30698 2d50f5564f7b
parent 29407 3fd4ede1581e
child 37732 3673fec68d16
permissions -rw-r--r--
8080471: fix usage of replace and file separator in Nashorn tests Summary: Two tests should use replace instead of replaceAll, and there is a typo in the usage of File.separator. Reviewed-by: attila, hannesw
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29407
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     1
with_stat.js:2:1 "with" statement cannot be used in strict mode
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     2
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     3
with({}) {}
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     4
 ^
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     5
with_stat.js:2:7 Expected ; but found )
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     6
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     7
with({}) {}
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     8
       ^
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
     9
repeat_param.js:2:15 strict mode function cannot have duplicate parameter name "x"
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    10
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    11
function func(x, x) {}
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    12
               ^
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    13
repeat_prop.js:2:22 Property "foo" already defined
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    14
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    15
var obj = { foo: 34, foo: 'hello' };
3fd4ede1581e 8074671: Nashorn Parser API
sundar
parents:
diff changeset
    16
                      ^