nashorn/test/script/basic/funcconstructor.js.EXPECTED
author malenkov
Thu, 13 Mar 2014 11:49:24 +0400
changeset 25536 a1ba79d447e0
parent 17973 d220c8157f25
permissions -rw-r--r--
8035699: File choosers should be choosier Reviewed-by: alexsch, art, skoivu

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