()
| 32645 | return isStartOfExpression(); |
| 32646 | } |
| 32647 | function nextTokenIsStartOfType() { |
| 32648 | nextToken(); |
| 32649 | return isStartOfType(); |
| 32650 | } |
| 32651 | // True if positioned at a list terminator |
| 32652 | function isListTerminator(kind) { |
| 32653 | if (token() === 1 /* SyntaxKind.EndOfFileToken */) { |
nothing calls this directly
no test coverage detected