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

Function formatMethod

agent/il2cpp-symbols.ts:447–460  ·  view source on GitHub ↗
(method: Il2Cpp.Method)

Source from the content-addressed store, hash-verified

445}
446
447function formatMethod(method: Il2Cpp.Method): string {
448 try {
449 const klass = method.class;
450 const className = klass.fullName || `${klass.namespace ?? ""}.${klass.name}`.replace(/^\./, "");
451 const parameters = method.parameters.map(parameter => parameter.type.name).join(", ");
452 return `${className}::${method.name}(${parameters})`;
453 } catch (_error) {
454 try {
455 return method.name;
456 } catch (__error) {
457 return "<unknown il2cpp method>";
458 }
459 }
460}

Callers 1

formatEntryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected