(text, pos)
| 10604 | var shebangTriviaRegex = /^#!.*/; |
| 10605 | /*@internal*/ |
| 10606 | function isShebangTrivia(text, pos) { |
| 10607 | // Shebangs check must only be done at the start of the file |
| 10608 | ts.Debug.assert(pos === 0); |
| 10609 | return shebangTriviaRegex.test(text); |
| 10610 | } |
| 10611 | ts.isShebangTrivia = isShebangTrivia; |
| 10612 | /*@internal*/ |
| 10613 | function scanShebangTrivia(text, pos) { |
no test coverage detected
searching dependent graphs…