(hint, node)
| 111553 | emit(node.constraint); |
| 111554 | } |
| 111555 | function pipelineEmitWithSubstitution(hint, node) { |
| 111556 | var pipelinePhase = getNextPipelinePhase(1 /* PipelinePhase.Substitution */, hint, node); |
| 111557 | ts.Debug.assertIsDefined(lastSubstitution); |
| 111558 | node = lastSubstitution; |
| 111559 | lastSubstitution = undefined; |
| 111560 | pipelinePhase(hint, node); |
| 111561 | } |
| 111562 | function getHelpersFromBundledSourceFiles(bundle) { |
| 111563 | var result; |
| 111564 | if (moduleKind === ts.ModuleKind.None || printerOptions.noEmitHelpers) { |
nothing calls this directly
no test coverage detected