///////////////////////////////////////////////////////////////////////////
| 136 | |
| 137 | //////////////////////////////////////////////////////////////////////////////// |
| 138 | bool Lexer::isIdentifierStart(int c) { |
| 139 | return c && // Include null character check. |
| 140 | !unicodeWhitespace(c) && !unicodeLatinDigit(c) && !isSingleCharOperator(c) && |
| 141 | !isPunctuation(c); |
| 142 | } |
| 143 | |
| 144 | //////////////////////////////////////////////////////////////////////////////// |
| 145 | bool Lexer::isIdentifierNext(int c) { |
nothing calls this directly
no outgoing calls
no test coverage detected