(mPtr)
| 8437 | exports.attachNative = attachNative; |
| 8438 | let arr_nop_addr = new Array(); |
| 8439 | var nopFunction = (mPtr) => { |
| 8440 | if (typeof mPtr == "number") |
| 8441 | mPtr = ptr(mPtr); |
| 8442 | if (mPtr == undefined) |
| 8443 | return; |
| 8444 | replaceFunction(mPtr, () => ptr(0), true); |
| 8445 | }; |
| 8446 | exports.nopFunction = nopFunction; |
| 8447 | var cancelNop = (mPtr) => { |
| 8448 | if (typeof mPtr == "number") |
nothing calls this directly
no test coverage detected