| 1181 | } |
| 1182 | |
| 1183 | void fxStringifyJSONUnicodeEscape(txMachine* the, txJSONStringifier* theStringifier, txInteger character) |
| 1184 | { |
| 1185 | char buffer[16]; |
| 1186 | txString p = buffer; |
| 1187 | *p++ = '\\'; |
| 1188 | *p++ = 'u'; |
| 1189 | p = fxStringifyUnicodeEscape(p, character, '\\'); |
| 1190 | fxStringifyJSONChars(the, theStringifier, buffer, mxPtrDiff(p - buffer)); |
| 1191 | } |
| 1192 | |
| 1193 | txSlot* fxToJSONKeys(txMachine* the, txSlot* reference) |
| 1194 | { |
no test coverage detected