diff -r 000000000000 -r b1a7da25b547 test/script/error/NASHORN-154/improper_return_break_continue.js.EXPECTED --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/script/error/NASHORN-154/improper_return_break_continue.js.EXPECTED Wed Apr 27 01:36:41 2016 +0800 @@ -0,0 +1,15 @@ +test/script/error/NASHORN-154/improper_return_break_continue.js:34:0 Invalid return statement +return 33; +^ +test/script/error/NASHORN-154/improper_return_break_continue.js:36:0 Illegal continue statement +continue; +^ +test/script/error/NASHORN-154/improper_return_break_continue.js:37:0 Illegal break statement +break; +^ +test/script/error/NASHORN-154/improper_return_break_continue.js:39:9 Undefined Label "nonExist" +continue nonExist; + ^ +test/script/error/NASHORN-154/improper_return_break_continue.js:40:6 Undefined Label "nonExist" +break nonExist; + ^