(method, filterModifier = "all")
| 596 | static attachMethod(method) { |
| 597 | attachMethodInner(method); |
| 598 | function attachMethodInner(method, filterModifier = "all") { |
| 599 | if (filterModifier == "all") { |
| 600 | if (!(0, il2cppM_1.getMethodModifier)(method).includes("abstract") && !method.virtualAddress.isNull()) |
| 601 | Breaker.attachMethodInfo(method); |
| 602 | } |
| 603 | else { |
| 604 | if (!(0, il2cppM_1.getMethodModifier)(method).includes(filterModifier)) |
| 605 | return; |
| 606 | if (!method.virtualAddress.isNull()) |
| 607 | Breaker.attachMethodInfo(method); |
| 608 | } |
| 609 | } |
| 610 | } |
| 611 | static callTimesInline = 0; |
| 612 | static attachMethodInfo(method, detailLog = false) { |
nothing calls this directly
no test coverage detected