(text, pos)
| 10611 | ts.isShebangTrivia = isShebangTrivia; |
| 10612 | /*@internal*/ |
| 10613 | function scanShebangTrivia(text, pos) { |
| 10614 | var shebang = shebangTriviaRegex.exec(text)[0]; |
| 10615 | pos = pos + shebang.length; |
| 10616 | return pos; |
| 10617 | } |
| 10618 | ts.scanShebangTrivia = scanShebangTrivia; |
| 10619 | /** |
| 10620 | * Invokes a callback for each comment range following the provided position. |
no test coverage detected