x-before-continue.js (367B)
1 // Copyright (C) 2011 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 es6id: 13.1 5 description: > 6 x before continue 7 ---*/ 8 do { 9 let x = 4; 10 assert.sameValue(x, 4); 11 { 12 let x = 5; 13 assert.sameValue(x, 5); 14 continue; 15 assert(false); 16 } 17 } while (false); 18 19 20 reportCompare(0, 0);