jdk-24/nashorn/test/script/basic/funcconstructor.js.EXPECTED
Athijegannathan Sundararajan 49c5af63c9 8015345: Function("}),print('test'),({") should throw SyntaxError
Reviewed-by: lagergren, hannesw, jlaskey
2013-06-03 15:58:14 +05:30

11 lines
165 B
Plaintext

anon func
225
function (x) {
print('anon func'); return x*x;
}
syntax error? true
SyntaxError: <function>:1:13 Missing close quote
print('hello)
^
done