OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // "let" in non-strict mode can be a label, even if composed of unicode escape | |
6 // sequences. | |
7 | |
8 var wasTouched = false; | |
9 l\u0065t: | |
10 do { | |
11 break l\u0065t; | |
12 wasTouched = true; | |
13 } while (false); | |
14 // Verify that in addition to no exception thrown, breaking to the label also | |
15 // works. | |
16 assertEquals(false, wasTouched); | |
adamk
2017/02/15 01:25:39
assertFalse will work here.
vabr (Chromium)
2017/02/15 01:34:20
Done.
| |
OLD | NEW |