| 83 | } |
| 84 | |
| 85 | void fxCheckCallable(txMachine* the, txSlot* slot) |
| 86 | { |
| 87 | if (fxIsCallable(the, slot)) |
| 88 | return; |
| 89 | mxTypeError("this: not a Function instance"); |
| 90 | } |
| 91 | |
| 92 | txSlot* fxCheckFunctionInstance(txMachine* the, txSlot* slot) |
| 93 | { |
no test coverage detected