1 test/nashorn/script/error/NASHORN-154/improper_return_break_continue.js:34:0 Invalid return statement
   2 return 33;
   3 ^
   4 test/nashorn/script/error/NASHORN-154/improper_return_break_continue.js:36:0 Illegal continue statement
   5 continue;
   6 ^
   7 test/nashorn/script/error/NASHORN-154/improper_return_break_continue.js:37:0 Illegal break statement
   8 break;
   9 ^
  10 test/nashorn/script/error/NASHORN-154/improper_return_break_continue.js:39:9 Undefined Label "nonExist"
  11 continue nonExist;
  12          ^
  13 test/nashorn/script/error/NASHORN-154/improper_return_break_continue.js:40:6 Undefined Label "nonExist"
  14 break nonExist;
  15       ^