()
| 36258 | return isBindingIdentifier() || token() === 18 /* SyntaxKind.OpenBraceToken */ || token() === 22 /* SyntaxKind.OpenBracketToken */; |
| 36259 | } |
| 36260 | function isLetDeclaration() { |
| 36261 | // In ES6 'let' always starts a lexical declaration if followed by an identifier or { |
| 36262 | // or [. |
| 36263 | return lookAhead(nextTokenIsBindingIdentifierOrStartOfDestructuring); |
| 36264 | } |
| 36265 | function parseStatement() { |
| 36266 | switch (token()) { |
| 36267 | case 26 /* SyntaxKind.SemicolonToken */: |
no test coverage detected
searching dependent graphs…