| 1328 | /* Exceptions */ |
| 1329 | |
| 1330 | void fxThrow(txMachine* the, txString path, txInteger line) |
| 1331 | { |
| 1332 | #ifdef mxDebug |
| 1333 | fxDebugThrow(the, path, line, "C: xsThrow"); |
| 1334 | #endif |
| 1335 | fxJump(the); |
| 1336 | } |
| 1337 | |
| 1338 | void fxThrowMessage(txMachine* the, txString path, txInteger line, txError error, txString format, ...) |
| 1339 | { |
no test coverage detected