(hierarchy: Il2Cpp.Class[])
| 95 | } |
| 96 | |
| 97 | function logInheritance(hierarchy: Il2Cpp.Class[]): void { |
| 98 | const names = hierarchy.map(klass => getClassName(klass)); |
| 99 | if (names.length === 0) { |
| 100 | return; |
| 101 | } |
| 102 | |
| 103 | log(`[lfs] inheritance ${names.join(" -> ")}`, "magenta"); |
| 104 | } |
| 105 | |
| 106 | function logFieldGroupHeader(group: FieldGroup): void { |
| 107 | const relation = group.depth === 0 ? "self" : `base+${group.depth}`; |
no test coverage detected