| 165 | } |
| 166 | |
| 167 | static String quoteString(String v) |
| 168 | { |
| 169 | #ifdef HX_SMART_STRINGS |
| 170 | if (v.isUTF16Encoded()) |
| 171 | return TQuoted(v.raw_wptr(),v.length); |
| 172 | #endif |
| 173 | return TQuoted(v.raw_ptr(),v.length); |
| 174 | } |
| 175 | |
| 176 | |
| 177 |
no test coverage detected