* Walks a statements that is nested within a parent statement * and can potentially be a non-block statement. * This enforces the nested statement to never be in ASI position. * @param {Statement} statement the nested statement
(statement)
| 2372 | * @param {Statement} statement the nested statement |
| 2373 | */ |
| 2374 | walkNestedStatement(statement) { |
| 2375 | this.prevStatement = undefined; |
| 2376 | this.walkStatement(statement); |
| 2377 | } |
| 2378 | |
| 2379 | // Real Statements |
| 2380 | /** |
no test coverage detected