()
| 7438 | "use strict"; |
| 7439 | Object.defineProperty(exports, "__esModule", { value: true }); |
| 7440 | const attachCurrentThread = () => { |
| 7441 | let thread = Il2Cpp.Api._threadCurrent(); |
| 7442 | if (thread.isNull()) |
| 7443 | Il2Cpp.Domain.attach(); |
| 7444 | }; |
| 7445 | const detachCurrentThread = () => { |
| 7446 | let threadHandle = Il2Cpp.Api._threadCurrent(); |
| 7447 | if (!threadHandle.isNull()) |
nothing calls this directly
no test coverage detected