///////////////////////////////////////////////////////////////////////////
| 209 | |
| 210 | //////////////////////////////////////////////////////////////////////////////// |
| 211 | bool Lexer::isPunctuation(int c) { |
| 212 | return isprint(c) && c != ' ' && c != '@' && c != '#' && c != '$' && c != '_' && |
| 213 | !unicodeLatinDigit(c) && !unicodeLatinAlpha(c); |
| 214 | } |
| 215 | |
| 216 | //////////////////////////////////////////////////////////////////////////////// |
| 217 | // Assumes that quotes is a string containing a non-trivial set of quote |
nothing calls this directly
no outgoing calls
no test coverage detected