| 899 | } |
| 900 | |
| 901 | void fxStringifyJSONIndent(txMachine* the, txJSONStringifier* theStringifier) |
| 902 | { |
| 903 | txInteger aLevel; |
| 904 | if (theStringifier->indent[0]) { |
| 905 | fxStringifyJSONChars(the, theStringifier, "\n", 1); |
| 906 | for (aLevel = 0; aLevel < theStringifier->level; aLevel++) |
| 907 | fxStringifyJSONChars(the, theStringifier, theStringifier->indent, theStringifier->indentLength); |
| 908 | } |
| 909 | } |
| 910 | |
| 911 | void fxStringifyJSONInteger(txMachine* the, txJSONStringifier* theStringifier, txInteger theInteger) |
| 912 | { |
no test coverage detected