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

Function formatArraySummary

agent/unity-fields.ts:286–292  ·  view source on GitHub ↗
(array: Il2Cpp.Array)

Source from the content-addressed store, hash-verified

284}
285
286function formatArraySummary(array: Il2Cpp.Array): string {
287 try {
288 return colorize(`& ${safeArrayElementType(array)}[] length=${array.length}`, "gray");
289 } catch (_error) {
290 return colorize("& array", "gray");
291 }
292}
293
294function safeArrayElementType(array: Il2Cpp.Array): string {
295 try {

Callers 1

formatFieldValueFunction · 0.85

Calls 2

colorizeFunction · 0.85
safeArrayElementTypeFunction · 0.85

Tested by

no test coverage detected