* Block pre walking iterates the scope for block variable declarations * @param {(Statement | ModuleDeclaration)[]} statements statements
(statements)
| 2163 | * @param {(Statement | ModuleDeclaration)[]} statements statements |
| 2164 | */ |
| 2165 | blockPreWalkStatements(statements) { |
| 2166 | for (let index = 0, len = statements.length; index < len; index++) { |
| 2167 | const statement = statements[index]; |
| 2168 | this.blockPreWalkStatement(statement); |
| 2169 | } |
| 2170 | } |
| 2171 | |
| 2172 | /** |
| 2173 | * Walking iterates the statements and expressions and processes them |
no test coverage detected