| 160 | } |
| 161 | |
| 162 | txSlot* fxNewInstance(txMachine* the) |
| 163 | { |
| 164 | txSlot* instance = fxNewSlot(the); |
| 165 | instance->kind = XS_INSTANCE_KIND; |
| 166 | instance->value.instance.garbage = C_NULL; |
| 167 | instance->value.instance.prototype = C_NULL; |
| 168 | mxPushReference(instance); |
| 169 | return instance; |
| 170 | } |
| 171 | |
| 172 | txBoolean fxIsSameInstance(txMachine* the, txSlot* a, txSlot* b) |
| 173 | { |
no test coverage detected