(token)
| 1300 | } |
| 1301 | |
| 1302 | function isIdentifierName(token) { |
| 1303 | return token.type === Token.Identifier || |
| 1304 | token.type === Token.Keyword || |
| 1305 | token.type === Token.BooleanLiteral || |
| 1306 | token.type === Token.NullLiteral; |
| 1307 | } |
| 1308 | |
| 1309 | function advanceSlash() { |
| 1310 | var prevToken, |
no outgoing calls
no test coverage detected