* Walk with statement. * @param {WithStatement} statement with statement
(statement)
| 2511 | * @param {WithStatement} statement with statement |
| 2512 | */ |
| 2513 | walkWithStatement(statement) { |
| 2514 | this.inBlockScope(() => { |
| 2515 | this.walkExpression(statement.object); |
| 2516 | this.walkNestedStatement(statement.body); |
| 2517 | }); |
| 2518 | } |
| 2519 | |
| 2520 | /** |
| 2521 | * Pre walk switch statement. |
no test coverage detected