| 493 | #if mxExplicitResourceManagement |
| 494 | |
| 495 | void fx_SuppressedError(txMachine* the) |
| 496 | { |
| 497 | txSlot* property = fx_Error_aux(the, XS_SUPPRESSED_ERROR, 2); |
| 498 | property = fxNextSlotProperty(the, property, mxArgv(0), mxID(_error), XS_DONT_ENUM_FLAG); |
| 499 | property = fxNextSlotProperty(the, property, mxArgv(1), mxID(_suppressed), XS_DONT_ENUM_FLAG); |
| 500 | } |
| 501 | |
| 502 | static txSlot* fxCheckDisposableStackInstance(txMachine* the, txSlot* slot, txBoolean mutable, txBoolean disposable); |
| 503 | static void fxDisposableStackPush(txMachine* the, txSlot* property); |
nothing calls this directly
no test coverage detected