(code)
| 1071 | return CHAR_TABLE[code] & IDENTIFIER_START; |
| 1072 | } |
| 1073 | isIdentifierChar(code) { |
| 1074 | return CHAR_TABLE[code] & IDENTIFIER_CHAR; |
| 1075 | } |
| 1076 | |
| 1077 | skipWhitespace() { |
| 1078 | const length = this.length, content = this.contentS; |
no outgoing calls
no test coverage detected