Token represents PUNCTUATION
| 1416 | |
| 1417 | // Token represents PUNCTUATION |
| 1418 | bool IsPunctuation() const noexcept { return this->Type == PUNCTUATION; } |
| 1419 | |
| 1420 | // Token is PUNCTUATION and equal to parameter |
| 1421 | bool IsPunctuation(char c) const noexcept { return this->Type == PUNCTUATION && c == this->Char; } |
no outgoing calls
no test coverage detected