Gets the current attached thread, if any.
()
| 10568 | } |
| 10569 | /** Gets the current attached thread, if any. */ |
| 10570 | static get currentThread() { |
| 10571 | const handle = Il2Cpp.Api._threadCurrent(); |
| 10572 | return handle.isNull() ? null : new Il2Cpp.Thread(handle); |
| 10573 | } |
| 10574 | /** Gets the Il2Cpp module as a Frida module. */ |
| 10575 | static get module() { |
| 10576 | return Process.getModuleByName(this.moduleName); |
nothing calls this directly
no test coverage detected