* Pre walking iterates the scope for variable declarations * @param {(Statement | ModuleDeclaration)[]} statements statements
(statements)
| 2152 | * @param {(Statement | ModuleDeclaration)[]} statements statements |
| 2153 | */ |
| 2154 | preWalkStatements(statements) { |
| 2155 | for (let index = 0, len = statements.length; index < len; index++) { |
| 2156 | const statement = statements[index]; |
| 2157 | this.preWalkStatement(statement); |
| 2158 | } |
| 2159 | } |
| 2160 | |
| 2161 | /** |
| 2162 | * Block pre walking iterates the scope for block variable declarations |
no test coverage detected