()
| 37616 | } |
| 37617 | } |
| 37618 | function skipWhitespace() { |
| 37619 | if (token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { |
| 37620 | if (lookAhead(isNextNonwhitespaceTokenEndOfFile)) { |
| 37621 | return; // Don't skip whitespace prior to EoF (or end of comment) - that shouldn't be included in any node's range |
| 37622 | } |
| 37623 | } |
| 37624 | while (token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { |
| 37625 | nextTokenJSDoc(); |
| 37626 | } |
| 37627 | } |
| 37628 | function skipWhitespaceOrAsterisk() { |
| 37629 | if (token() === 5 /* SyntaxKind.WhitespaceTrivia */ || token() === 4 /* SyntaxKind.NewLineTrivia */) { |
| 37630 | if (lookAhead(isNextNonwhitespaceTokenEndOfFile)) { |
no test coverage detected