| 1303 | } |
| 1304 | |
| 1305 | void fxNewGeneratorResult(txMachine* the, txBoolean done) |
| 1306 | { |
| 1307 | txSlot* value = the->stack; |
| 1308 | txSlot* slot; |
| 1309 | mxPush(mxObjectPrototype); |
| 1310 | slot = fxLastProperty(the, fxNewObjectInstance(the)); |
| 1311 | slot = fxNextSlotProperty(the, slot, value, mxID(_value), XS_DONT_DELETE_FLAG | XS_DONT_SET_FLAG); |
| 1312 | slot = fxNextBooleanProperty(the, slot, done, mxID(_done), XS_DONT_DELETE_FLAG | XS_DONT_SET_FLAG); |
| 1313 | mxPullSlot(value); |
| 1314 | } |
| 1315 | |
| 1316 | void fx_Generator(txMachine* the) |
| 1317 | { |
no test coverage detected