| 4523 | } |
| 4524 | |
| 4525 | void fxRunConstructor(txMachine* the) |
| 4526 | { |
| 4527 | txSlot* target; |
| 4528 | txSlot* prototype; |
| 4529 | target = mxTarget; |
| 4530 | mxPushUndefined(); |
| 4531 | prototype = the->stack; |
| 4532 | fxBeginHost(the); |
| 4533 | mxPushSlot(target); |
| 4534 | fxGetPrototypeFromConstructor(the, &mxObjectPrototype); |
| 4535 | *prototype = *the->stack; |
| 4536 | fxEndHost(the); |
| 4537 | fxNewHostInstance(the); |
| 4538 | mxPullSlot(mxThis); |
| 4539 | } |
| 4540 | |
| 4541 | txBoolean fxRunDefine(txMachine* the, txSlot* instance, txSlot* check, txID id, txIndex index, txSlot* slot, txFlag mask) |
| 4542 | { |
no test coverage detected