| 811 | } |
| 812 | |
| 813 | bool isCChar() const { |
| 814 | return (((mTokType == eString) && isPrefixStringCharLiteral(mStr, '"', "")) || |
| 815 | ((mTokType == eChar) && isPrefixStringCharLiteral(mStr, '\'', "") && (replaceEscapeSequences(getCharLiteral(mStr)).size() == 1))); |
| 816 | } |
| 817 | |
| 818 | bool isCMultiChar() const { |
| 819 | return (mTokType == eChar) && isPrefixStringCharLiteral(mStr, '\'', "") && (replaceEscapeSequences(getCharLiteral(mStr)).size() > 1); |
no test coverage detected