| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Flags: --strong-mode | 5 // Flags: --strong-mode |
| 6 | 6 |
| 7 (function NoEmptySubStatement() { | 7 (function NoEmptySubStatement() { |
| 8 assertThrows("'use strong'; if (1);", SyntaxError); | 8 assertThrows("'use strong'; if (1);", SyntaxError); |
| 9 assertThrows("'use strong'; if (1) {} else;", SyntaxError); | 9 assertThrows("'use strong'; if (1) {} else;", SyntaxError); |
| 10 assertThrows("'use strong'; while (1);", SyntaxError); | 10 assertThrows("'use strong'; while (1);", SyntaxError); |
| 11 assertThrows("'use strong'; do; while (1);", SyntaxError); | 11 assertThrows("'use strong'; do; while (1);", SyntaxError); |
| 12 assertThrows("'use strong'; for (;;);", SyntaxError); | 12 assertThrows("'use strong'; for (;;);", SyntaxError); |
| 13 assertThrows("'use strong'; for (x in []);", SyntaxError); | 13 assertThrows("'use strong'; for (x in []);", SyntaxError); |
| 14 assertThrows("'use strong'; for (x of []);", SyntaxError); | 14 assertThrows("'use strong'; for (x of []);", SyntaxError); |
| 15 assertThrows("'use strong'; for (let x;;);", SyntaxError); | 15 assertThrows("'use strong'; for (let x;;);", SyntaxError); |
| 16 assertThrows("'use strong'; for (let x in []);", SyntaxError); | 16 assertThrows("'use strong'; for (let x in []);", SyntaxError); |
| 17 assertThrows("'use strong'; for (let x of []);", SyntaxError); | 17 assertThrows("'use strong'; for (let x of []);", SyntaxError); |
| 18 assertThrows("'use strong'; with ({});", SyntaxError); | |
| 19 })(); | 18 })(); |
| OLD | NEW |