| 407 | } |
| 408 | |
| 409 | void fx_Iterator(txMachine* the) |
| 410 | { |
| 411 | if (!mxHasTarget) |
| 412 | mxTypeError("call: Iterator"); |
| 413 | if (fxIsSameSlot(the, mxTarget, mxFunction)) |
| 414 | mxTypeError("new: Iterator"); |
| 415 | mxPushSlot(mxTarget); |
| 416 | fxGetPrototypeFromConstructor(the, &mxIteratorPrototype); |
| 417 | fxNewObjectInstance(the); |
| 418 | mxPullSlot(mxResult); |
| 419 | } |
| 420 | |
| 421 | void fx_Iterator_concat(txMachine* the) |
| 422 | { |
nothing calls this directly
no test coverage detected