MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxNextBooleanProperty

Function fxNextBooleanProperty

xs/sources/xsProperty.c:111–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111txSlot* fxNextBooleanProperty(txMachine* the, txSlot* property, txBoolean boolean, txID id, txFlag flag)
112{
113 property = property->next = fxNewSlot(the);
114 property->flag = flag;
115 property->ID = id;
116 property->kind = XS_BOOLEAN_KIND;
117 property->value.boolean = boolean;
118 return property;
119}
120
121txSlot* fxNextIntegerProperty(txMachine* the, txSlot* property, txInteger integer, txID id, txFlag flag)
122{

Callers 9

fxNewIteratorInstanceFunction · 0.85
fxNewGeneratorResultFunction · 0.85
fx_EnumeratorFunction · 0.85
fxNewBooleanInstanceFunction · 0.85
fxBuildArrayFunction · 0.85
fxDescribePropertyFunction · 0.85
fx_Atomics_waitAsyncFunction · 0.85

Calls 1

fxNewSlotFunction · 0.85

Tested by

no test coverage detected