nashorn/test/script/error/JDK-8098847.js.EXPECTED
author sundar
Wed, 17 Jun 2015 14:21:20 +0530
changeset 31198 f807ce35a661
permissions -rw-r--r--
8098847: obj."prop" and obj.'prop' should result in SyntaxError Reviewed-by: hannesw, attila

test/script/error/JDK-8098847.js:32:5 Expected ident but found prop
obj."prop" = "hello";
     ^
test/script/error/JDK-8098847.js:33:5 Expected ident but found prop
obj.'prop' = "hello";
     ^