| 806 | } |
| 807 | |
| 808 | bool isUtf32() const { |
| 809 | return (((mTokType == eString) && isPrefixStringCharLiteral(mStr, '"', "U")) || |
| 810 | ((mTokType == eChar) && isPrefixStringCharLiteral(mStr, '\'', "U"))); |
| 811 | } |
| 812 | |
| 813 | bool isCChar() const { |
| 814 | return (((mTokType == eString) && isPrefixStringCharLiteral(mStr, '"', "")) || |
nothing calls this directly
no test coverage detected