gitextract_gmf84zuc/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Chisel/ │ ├── Chisel/ │ │ ├── CHLAllocations.c │ │ ├── CHLAllocations.h │ │ ├── CHLObjcInstanceCommands.h │ │ ├── CHLObjcInstanceCommands.mm │ │ ├── CHLObjcInstances.h │ │ ├── CHLObjcInstances.mm │ │ ├── CHLPredicateTools.h │ │ ├── CHLPredicateTools.m │ │ ├── Chisel.h │ │ ├── Info.plist │ │ └── zone_allocator.h │ ├── Chisel-macOS/ │ │ ├── Chisel_macOS.h │ │ └── Info.plist │ ├── Chisel.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Chisel.xcscheme │ ├── ChiselTests/ │ │ ├── ChiselTests.m │ │ └── Info.plist │ └── Makefile ├── LICENSE ├── README.md ├── commands/ │ ├── FBAccessibilityCommands.py │ ├── FBAutoLayoutCommands.py │ ├── FBClassDump.py │ ├── FBComponentCommands.py │ ├── FBCopyCommands.py │ ├── FBCounterCommands.py │ ├── FBDebugCommands.py │ ├── FBDelay.py │ ├── FBDisplayCommands.py │ ├── FBFindCommands.py │ ├── FBFlickerCommands.py │ ├── FBImportCommands.py │ ├── FBInvocationCommands.py │ ├── FBPrintCommands.py │ ├── FBTextInputCommands.py │ ├── FBVisualizationCommands.py │ └── FBXCTestCommands.py ├── fbchisellldb.py ├── fbchisellldbbase.py ├── fbchisellldbinputhelpers.py ├── fbchisellldbobjcruntimehelpers.py ├── fbchisellldbobjecthelpers.py ├── fbchisellldbviewcontrollerhelpers.py └── fbchisellldbviewhelpers.py