| 57 | static void fx_AsyncFromSyncIterator_prototype_aux(txMachine* the, txFlag status, txSlot* iterator, txBoolean* flag); |
| 58 | |
| 59 | void fxBuildGenerator(txMachine* the) |
| 60 | { |
| 61 | txSlot* slot; |
| 62 | txSlot* property; |
| 63 | |
| 64 | mxPush(mxIteratorPrototype); |
| 65 | slot = fxLastProperty(the, the->stack->value.reference); |
| 66 | #if mxECMAScript2025 |
| 67 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_drop), 1, mxID(_drop), XS_DONT_ENUM_FLAG); |
| 68 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_every), 1, mxID(_every), XS_DONT_ENUM_FLAG); |
| 69 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_filter), 1, mxID(_filter), XS_DONT_ENUM_FLAG); |
| 70 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_find), 1, mxID(_find), XS_DONT_ENUM_FLAG); |
| 71 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_flatMap), 1, mxID(_flatMap), XS_DONT_ENUM_FLAG); |
| 72 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_forEach), 1, mxID(_forEach), XS_DONT_ENUM_FLAG); |
| 73 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_map), 1, mxID(_map), XS_DONT_ENUM_FLAG); |
| 74 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_reduce), 1, mxID(_reduce), XS_DONT_ENUM_FLAG); |
| 75 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_some), 1, mxID(_some), XS_DONT_ENUM_FLAG); |
| 76 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_take), 1, mxID(_take), XS_DONT_ENUM_FLAG); |
| 77 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_toArray), 0, mxID(_toArray), XS_DONT_ENUM_FLAG); |
| 78 | slot = fxNextHostAccessorProperty(the, slot, mxCallback(fx_Iterator_prototype_toStringTag_get), mxCallback(fx_Iterator_prototype_toStringTag_set), mxID(_Symbol_toStringTag), XS_DONT_ENUM_FLAG); |
| 79 | #endif |
| 80 | #if mxExplicitResourceManagement |
| 81 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_dispose), 0, mxID(_Symbol_dispose), XS_DONT_ENUM_FLAG); |
| 82 | #endif |
| 83 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_prototype_iterator), 0, mxID(_Symbol_iterator), XS_DONT_ENUM_FLAG); |
| 84 | #if mxECMAScript2025 |
| 85 | property = slot; |
| 86 | slot = fxBuildHostConstructor(the, mxCallback(fx_Iterator), 0, mxID(_Iterator)); |
| 87 | mxIteratorConstructor = *the->stack; |
| 88 | slot = fxLastProperty(the, slot); |
| 89 | #if mxECMAScript2026 |
| 90 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_concat), 0, mxID(_concat), XS_DONT_ENUM_FLAG); |
| 91 | #endif |
| 92 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Iterator_from), 1, mxID(_from), XS_DONT_ENUM_FLAG); |
| 93 | |
| 94 | mxPush(mxIteratorPrototype); |
| 95 | property = fxNextHostAccessorProperty(the, property, mxCallback(fx_Iterator_prototype_constructor_get), mxCallback(fx_Iterator_prototype_constructor_set), mxID(_constructor), XS_DONT_ENUM_FLAG); |
| 96 | mxPop(); |
| 97 | |
| 98 | mxPush(mxIteratorPrototype); |
| 99 | slot = fxLastProperty(the, fxNewObjectInstance(the)); |
| 100 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_IteratorHelper_prototype_next), 1, mxID(_next), XS_DONT_ENUM_FLAG); |
| 101 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_IteratorHelper_prototype_return), 1, mxID(_return), XS_DONT_ENUM_FLAG); |
| 102 | slot = fxNextStringXProperty(the, slot, "Iterator Helper", mxID(_Symbol_toStringTag), XS_DONT_ENUM_FLAG | XS_DONT_SET_FLAG); |
| 103 | mxPull(mxIteratorHelperPrototype); |
| 104 | |
| 105 | mxPush(mxIteratorPrototype); |
| 106 | slot = fxLastProperty(the, fxNewObjectInstance(the)); |
| 107 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_IteratorWrapper_prototype_next), 1, mxID(_next), XS_DONT_ENUM_FLAG); |
| 108 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_IteratorWrapper_prototype_return), 1, mxID(_return), XS_DONT_ENUM_FLAG); |
| 109 | mxPull(mxIteratorWrapperPrototype); |
| 110 | |
| 111 | #endif |
| 112 | |
| 113 | mxPush(mxIteratorPrototype); |
| 114 | slot = fxLastProperty(the, fxNewObjectInstance(the)); |
| 115 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Generator_prototype_next), 1, mxID(_next), XS_DONT_ENUM_FLAG); |
| 116 | slot = fxNextHostFunctionProperty(the, slot, mxCallback(fx_Generator_prototype_return), 1, mxID(_return), XS_DONT_ENUM_FLAG); |
no test coverage detected