(stmt)
| 101131 | // The class statements are the statements generated by visiting the first statement with initializer of the |
| 101132 | // body (1), while all other statements are added to remainingStatements (2) |
| 101133 | var isVariableStatementWithInitializer = function (stmt) { return ts.isVariableStatement(stmt) && !!ts.first(stmt.declarationList.declarations).initializer; }; |
| 101134 | // visit the class body statements outside of any converted loop body. |
| 101135 | var savedConvertedLoopState = convertedLoopState; |
| 101136 | convertedLoopState = undefined; |
no test coverage detected