| 166 | } |
| 167 | |
| 168 | void fxParseJSON(txMachine* the, txJSONParser* theParser) |
| 169 | { |
| 170 | fxParseJSONToken(the, theParser); |
| 171 | fxParseJSONValue(the, theParser); |
| 172 | if (theParser->token != XS_JSON_TOKEN_EOF) |
| 173 | mxSyntaxError("%ld: missing EOF", theParser->line); |
| 174 | } |
| 175 | |
| 176 | void fxParseJSONArray(txMachine* the, txJSONParser* theParser) |
| 177 | { |
no test coverage detected