MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / addClassMethods

Function addClassMethods

agent/il2cpp-symbols.ts:339–350  ·  view source on GitHub ↗
(klass: Il2Cpp.Class)

Source from the content-addressed store, hash-verified

337}
338
339function addClassMethods(klass: Il2Cpp.Class): void {
340 let methods: Il2Cpp.Method[];
341 try {
342 methods = klass.methods;
343 } catch (_error) {
344 return;
345 }
346
347 for (const method of methods) {
348 addMethod(method);
349 }
350}
351
352function addMethod(method: Il2Cpp.Method): void {
353 const module = getIl2CppModule();

Callers 1

loadClassBatchFunction · 0.85

Calls 1

addMethodFunction · 0.85

Tested by

no test coverage detected