* Prepends statements to an array while taking care of prologue directives.
(to, from)
| 14651 | * Prepends statements to an array while taking care of prologue directives. |
| 14652 | */ |
| 14653 | function insertStatementsAfterStandardPrologue(to, from) { |
| 14654 | return insertStatementsAfterPrologue(to, from, isPrologueDirective); |
| 14655 | } |
| 14656 | ts.insertStatementsAfterStandardPrologue = insertStatementsAfterStandardPrologue; |
| 14657 | function insertStatementsAfterCustomPrologue(to, from) { |
| 14658 | return insertStatementsAfterPrologue(to, from, isAnyPrologueDirective); |
nothing calls this directly
no test coverage detected