| Index: test/mjsunit/es6/completion.js
|
| diff --git a/test/mjsunit/es6/completion.js b/test/mjsunit/es6/completion.js
|
| index 988e9709bb7a5c026823fbfd45b5bbeffb8cd73f..29224411bba82ef0f4b240c4ba30bae28587f6d9 100644
|
| --- a/test/mjsunit/es6/completion.js
|
| +++ b/test/mjsunit/es6/completion.js
|
| @@ -146,3 +146,8 @@ assertUndef(eval(
|
| assertUndef(eval("1; try{2; throwOnReturn();} catch(e){}"));
|
| assertUndef(eval("1; twoFunc();"));
|
| assertEquals(2, eval("1; with ( { a: 0 } ) { 2; }"));
|
| +
|
| +assertUndef(eval('a: while(true) { do { 0 } while(false); switch(1) { case 0: 1; case 1: break a; }; 0 }'));
|
| +assertUndef(eval('a: while(true) { do { 0 } while(false); try {} finally { break a }; 0 }'));
|
| +assertUndef(eval('a: while(true) { b: while(true) { 0; break b; }; switch(1) { case 1: break a; }; 2 }'));
|
| +assertUndef(eval('a: while(true) { b: while(true) { 0; break b; }; while (true) { break a; }; 2 }'));
|
|
|