jdk-24/nashorn/test/script/error/NASHORN-154
Andreas Woess 5881148f01 8134503: support ES6 parsing in Nashorn
Reviewed-by: jlaskey, sundar, mhaupt
2016-04-27 15:50:33 +02:00
..
function_mult_params_in_strict.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
function_mult_params_in_strict.js.EXPECTED 8134503: support ES6 parsing in Nashorn 2016-04-27 15:50:33 +02:00
improper_return_break_continue.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
improper_return_break_continue.js.EXPECTED 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00
invalid_lvalue.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
invalid_lvalue.js.EXPECTED 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00
literal_data_and_accessor.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
literal_data_and_accessor.js.EXPECTED 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00
literal_mult_getters.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
literal_mult_getters.js.EXPECTED 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00
literal_mult_prop_in_strict.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
literal_mult_prop_in_strict.js.EXPECTED 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00
README 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00
with_in_strict.js 8044638: Tidy up Nashorn codebase for code standards 2014-06-04 13:08:57 +02:00
with_in_strict.js.EXPECTED 8005403: Open-source Nashorn 2012-12-21 16:36:24 -04:00

Section 16 of ECMAScript 5.1 spec details a set of "early errors". Early
errors should be reported before running any line of the script containing
such error(s). Examples include syntax error, errors in regexp literals etc.
This directory contains tests to check early errors are reported as early
errors. Each test starts with a print call -- the output from print should 
not be seen in expected output. If seen, early errors are reported late.