()
| 36542 | return finishNode(factory.createVariableDeclarationList(declarations, flags), pos); |
| 36543 | } |
| 36544 | function canFollowContextualOfKeyword() { |
| 36545 | return nextTokenIsIdentifier() && nextToken() === 21 /* SyntaxKind.CloseParenToken */; |
| 36546 | } |
| 36547 | function parseVariableStatement(pos, hasJSDoc, decorators, modifiers) { |
| 36548 | var declarationList = parseVariableDeclarationList(/*inForStatementInitializer*/ false); |
| 36549 | parseSemicolon(); |
nothing calls this directly
no test coverage detected