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