| 143 | } |
| 144 | |
| 145 | void _xsDefine(txMachine *the, txSlot *self, txID id, txSlot *v, txFlag attributes) |
| 146 | { |
| 147 | mxOverflow(-2); |
| 148 | fxPush(*v); |
| 149 | fxPush(*self); |
| 150 | fxDefineID(the, id, attributes, attributes | XS_DONT_DELETE_FLAG | XS_DONT_ENUM_FLAG | XS_DONT_SET_FLAG); |
| 151 | mxPop(); |
| 152 | } |
| 153 | |
| 154 | void _xsDelete(txMachine *the, txSlot *self, txID id) |
| 155 | { |
nothing calls this directly
no test coverage detected