| 528 | /* Host Constructors, Functions and Objects */ |
| 529 | |
| 530 | void fxNative(txMachine* the) |
| 531 | { |
| 532 | if (mxHasTarget) |
| 533 | mxPushSlot(mxTarget); |
| 534 | else |
| 535 | mxPushSlot(mxFunction); |
| 536 | mxGetID(mxID(_prototype)); |
| 537 | fxNewHostInstance(the); |
| 538 | mxPullSlot(mxResult); |
| 539 | } |
| 540 | |
| 541 | void fxBuildHosts(txMachine* the, txInteger c, const txHostFunctionBuilder* builder) |
| 542 | { |
nothing calls this directly
no test coverage detected