| // Copyright (C) 2015 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Control flow during body evaluation should honor `break` statements within |
| $ERROR('This code is unreachable (following `yield` statement).'); |
| for (var x of iterator) { |
| $ERROR('This code is unreachable (following `break` statement).'); |
| $ERROR('This code is unreachable (following `try` statement).'); |
| $ERROR('This code is unreachable (following `for..of` statement).'); |