(token)
| 1215 | } |
| 1216 | |
| 1217 | function isIdentifierName(token) { |
| 1218 | return token.type === Token.Identifier || |
| 1219 | token.type === Token.Keyword || |
| 1220 | token.type === Token.BooleanLiteral || |
| 1221 | token.type === Token.NullLiteral; |
| 1222 | } |
| 1223 | |
| 1224 | function advanceSlash() { |
| 1225 | var prevToken, |
no outgoing calls
no test coverage detected