* Prepends statements to an array while taking care of prologue directives.
(to, statement)
| 14662 | * Prepends statements to an array while taking care of prologue directives. |
| 14663 | */ |
| 14664 | function insertStatementAfterStandardPrologue(to, statement) { |
| 14665 | return insertStatementAfterPrologue(to, statement, isPrologueDirective); |
| 14666 | } |
| 14667 | ts.insertStatementAfterStandardPrologue = insertStatementAfterStandardPrologue; |
| 14668 | function insertStatementAfterCustomPrologue(to, statement) { |
| 14669 | return insertStatementAfterPrologue(to, statement, isAnyPrologueDirective); |
nothing calls this directly
no test coverage detected