* Move the variable statements to declarations.
()
| 99 | * Move the variable statements to declarations. |
| 100 | */ |
| 101 | pushVariableStatementsToDeclarations() { |
| 102 | if (this.variableStatements.length == 0) |
| 103 | return; |
| 104 | this.pushDeclaration(...this.variableStatements); |
| 105 | this.variableStatements = []; |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * The file parsing has ended. |
no test coverage detected