(token)
| 1166 | } |
| 1167 | |
| 1168 | isIdentifierName(token): boolean { |
| 1169 | return token.type === Token.Identifier || |
| 1170 | token.type === Token.Keyword || |
| 1171 | token.type === Token.BooleanLiteral || |
| 1172 | token.type === Token.NullLiteral; |
| 1173 | } |
| 1174 | |
| 1175 | parseIdentifierName(): Node.Identifier { |
| 1176 | const node = this.createNode(); |
no outgoing calls
no test coverage detected