| 4712 | } |
| 4713 | |
| 4714 | void fxRunInstantiate(txMachine* the) |
| 4715 | { |
| 4716 | if (the->stack->kind == XS_NULL_KIND) { |
| 4717 | mxPop(); |
| 4718 | fxNewInstance(the); |
| 4719 | } |
| 4720 | else if (the->stack->kind == XS_REFERENCE_KIND) { |
| 4721 | fxNewHostInstance(the); |
| 4722 | } |
| 4723 | else { |
| 4724 | mxPop(); |
| 4725 | mxPush(mxObjectPrototype); |
| 4726 | fxNewObjectInstance(the); |
| 4727 | } |
| 4728 | } |
| 4729 | |
| 4730 | void fxRunProxy(txMachine* the, txSlot* instance) |
| 4731 | { |
no test coverage detected