(token)
| 143970 | }; |
| 143971 | } |
| 143972 | function isIdentifierName(token) { |
| 143973 | return token.type === TokenIdentifier || token.type === TokenKeyword || token.type === TokenBooleanLiteral || token.type === TokenNullLiteral; |
| 143974 | } |
| 143975 | function advance() { |
| 143976 | skipComment(); |
| 143977 | if (index >= length) return { |
no outgoing calls
no test coverage detected