| 185 | inline const char16_t *raw_wptr() const { return __w; } |
| 186 | #endif |
| 187 | inline bool isUTF16Encoded() const { |
| 188 | #ifdef HX_SMART_STRINGS |
| 189 | return __w && ((unsigned int *)__w)[-1] & HX_GC_STRING_CHAR16_T; |
| 190 | #else |
| 191 | return false; |
| 192 | #endif |
| 193 | } |
| 194 | |
| 195 | inline bool isAsciiEncoded() const { |
| 196 | #ifdef HX_SMART_STRINGS |
no outgoing calls
no test coverage detected