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

Function getClassName

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

Source from the content-addressed store, hash-verified

198}
199
200export function getClassName(klass: Il2Cpp.Class): string {
201 return klass.fullName || `${klass.namespace ?? ""}.${klass.name}`.replace(/^\./, "");
202}
203
204function isObjectCandidate(value: NativePointer): boolean {
205 if (value.isNull() || !isAligned(value) || !isReadableDataPointer(value)) {

Callers 5

resolveIl2CppObjectFunction · 0.85
logIl2CppFieldsFunction · 0.85
logInheritanceFunction · 0.85
formatObjectSummaryFunction · 0.85
tryAsArrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected