| 1523 | } |
| 1524 | |
| 1525 | void fx_Array_isArray(txMachine* the) |
| 1526 | { |
| 1527 | mxResult->kind = XS_BOOLEAN_KIND; |
| 1528 | mxResult->value.boolean = (mxArgc > 0) ? fxIsArray(the, fxGetInstance(the, mxArgv(0))) : 0; |
| 1529 | } |
| 1530 | |
| 1531 | void fx_Array_of(txMachine* the) |
| 1532 | { |
nothing calls this directly
no test coverage detected