* Skips trivia such as comments and white-space that can be optionally overridden by the source-map source
(source, pos)
| 115077 | * Skips trivia such as comments and white-space that can be optionally overridden by the source-map source |
| 115078 | */ |
| 115079 | function skipSourceTrivia(source, pos) { |
| 115080 | return source.skipTrivia ? source.skipTrivia(pos) : ts.skipTrivia(source.text, pos); |
| 115081 | } |
| 115082 | /** |
| 115083 | * Emits a mapping. |
| 115084 | * |
no outgoing calls
no test coverage detected