(token)
| 3902 | } |
| 3903 | |
| 3904 | function isIdentifierName(token) { |
| 3905 | return token.type === Token.Identifier || |
| 3906 | token.type === Token.Keyword || |
| 3907 | token.type === Token.BooleanLiteral || |
| 3908 | token.type === Token.NullLiteral; |
| 3909 | } |
| 3910 | |
| 3911 | function advanceSlash() { |
| 3912 | var prevToken, |
no outgoing calls
no test coverage detected