jdk-24/nashorn/test/script/error/NASHORN-154/invalid_lvalue.js.EXPECTED
Jim Laskey 98762d6ee0 8005403: Open-source Nashorn
Co-authored-by: Akhil Arora <akhil.arora@oracle.com>
Co-authored-by: Andreas Woess <andreas.woess@jku.at>
Co-authored-by: Attila Szegedi <attila.szegedi@oracle.com>
Co-authored-by: Hannes Wallnoefer <hannes.wallnoefer@oracle.com>
Co-authored-by: Henry Jen <henry.jen@oracle.com>
Co-authored-by: Marcus Lagergren <marcus.lagergren@oracle.com>
Co-authored-by: Pavel Semenov <pavel.semenov@oracle.com>
Co-authored-by: Pavel Stepanov <pavel.stepanov@oracle.com>
Co-authored-by: Petr Hejl <petr.hejl@oracle.com>
Co-authored-by: Petr Pisl <petr.pisl@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: attila, hannesw, lagergren, sundar
2012-12-21 16:36:24 -04:00

16 lines
525 B
Plaintext

test/script/error/NASHORN-154/invalid_lvalue.js:36:0 Invalid left hand side for assignment
3 = 4;
^
test/script/error/NASHORN-154/invalid_lvalue.js:37:2 Invalid left hand side for assignment
2 + 44 = 3;
^
test/script/error/NASHORN-154/invalid_lvalue.js:38:2 Invalid left hand side for assignment
x * y = 33;
^
test/script/error/NASHORN-154/invalid_lvalue.js:39:2 Invalid left hand side for assignment
x / y = 23;
^
test/script/error/NASHORN-154/invalid_lvalue.js:40:1 Invalid left hand side for assignment
x++ /= 33
^