(node)
| 100376 | return (resolver.getNodeCheckFlags(node) & 131072 /* NodeCheckFlags.ContainsCapturedBlockScopeBinding */) !== 0; |
| 100377 | } |
| 100378 | function shouldConvertInitializerOfForStatement(node) { |
| 100379 | return ts.isForStatement(node) && !!node.initializer && shouldConvertPartOfIterationStatement(node.initializer); |
| 100380 | } |
| 100381 | function shouldConvertConditionOfForStatement(node) { |
| 100382 | return ts.isForStatement(node) && !!node.condition && shouldConvertPartOfIterationStatement(node.condition); |
| 100383 | } |
no test coverage detected