///////////////////////////////////////////////////////////////////////////
| 143 | |
| 144 | //////////////////////////////////////////////////////////////////////////////// |
| 145 | bool Lexer::isIdentifierNext(int c) { |
| 146 | return c && // Include null character check. |
| 147 | c != ':' && // Used in isPair. |
| 148 | c != '=' && // Used in isPair. |
| 149 | !unicodeWhitespace(c) && !isSingleCharOperator(c); |
| 150 | } |
| 151 | |
| 152 | //////////////////////////////////////////////////////////////////////////////// |
| 153 | bool Lexer::isSingleCharOperator(int c) { |
nothing calls this directly
no outgoing calls
no test coverage detected