(name)
| 109891 | return statements; |
| 109892 | } |
| 109893 | function addBlockScopedVariable(name) { |
| 109894 | ts.Debug.assert(blockScopeStackOffset > 0, "Cannot add a block scoped variable outside of an iteration body."); |
| 109895 | (blockScopedVariableDeclarations || (blockScopedVariableDeclarations = [])).push(name); |
| 109896 | } |
| 109897 | function requestEmitHelper(helper) { |
| 109898 | ts.Debug.assert(state > 0 /* TransformationState.Uninitialized */, "Cannot modify the transformation context during initialization."); |
| 109899 | ts.Debug.assert(state < 2 /* TransformationState.Completed */, "Cannot modify the transformation context after transformation has completed."); |
no test coverage detected
searching dependent graphs…