gitextract_zcfu_6aw/ ├── .eslintrc.json ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── build_executable.yml │ └── tests.yml ├── .gitignore ├── .prettierrc.js ├── .vscode/ │ └── settings.json ├── .vulture_whitelist.py ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs/ │ ├── CNAME │ ├── api.md │ ├── contact.md │ ├── examples.md │ ├── faq.md │ ├── gettingstarted.md │ ├── guides.md │ ├── howitworks.md │ ├── index.md │ ├── installation.md │ └── screenshots.md ├── examples/ │ ├── .gitignore │ ├── README.md │ ├── c/ │ │ ├── debug_segfault.c │ │ ├── hello.c │ │ ├── input.c │ │ ├── makefile │ │ ├── sleeper.c │ │ ├── threads.c │ │ └── tree.c │ ├── cpp/ │ │ ├── hello.cpp │ │ ├── linked_list.cpp │ │ ├── makefile │ │ ├── sin.cpp │ │ └── smart_ptr_demo.cpp │ ├── fortran/ │ │ ├── fortran_array.f90 │ │ └── makefile │ ├── golang/ │ │ ├── hello.go │ │ └── makefile │ └── rust/ │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── compile_and_debug.sh │ └── src/ │ └── main.rs ├── gdbgui/ │ ├── SSLify.py │ ├── VERSION.txt │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── htmllistformatter.py │ ├── py.typed │ ├── server/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── constants.py │ │ ├── http_routes.py │ │ ├── http_util.py │ │ ├── ptylib.py │ │ ├── server.py │ │ └── sessionmanager.py │ ├── src/ │ │ └── js/ │ │ ├── Actions.ts │ │ ├── BinaryLoader.tsx │ │ ├── Breakpoints.tsx │ │ ├── ControlButtons.tsx │ │ ├── CopyToClipboard.tsx │ │ ├── Expressions.tsx │ │ ├── FileOps.tsx │ │ ├── FileSystem.tsx │ │ ├── FoldersView.tsx │ │ ├── GdbApi.tsx │ │ ├── GdbMiOutput.tsx │ │ ├── GdbVariable.tsx │ │ ├── GdbguiModal.tsx │ │ ├── GlobalEvents.ts │ │ ├── HoverVar.tsx │ │ ├── InferiorProgramInfo.tsx │ │ ├── InitialStoreData.ts │ │ ├── Links.tsx │ │ ├── Locals.tsx │ │ ├── Memory.tsx │ │ ├── MemoryLink.tsx │ │ ├── MiddleLeft.tsx │ │ ├── ReactTable.tsx │ │ ├── Registers.tsx │ │ ├── RightSidebar.tsx │ │ ├── Settings.tsx │ │ ├── SourceCode.tsx │ │ ├── SourceCodeHeading.tsx │ │ ├── SourceFileAutocomplete.tsx │ │ ├── StatusBar.tsx │ │ ├── Terminals.tsx │ │ ├── Threads.tsx │ │ ├── ToolTip.tsx │ │ ├── ToolTipTourguide.tsx │ │ ├── TopBar.tsx │ │ ├── Tree.ts │ │ ├── Util.ts │ │ ├── constants.ts │ │ ├── dashboard.tsx │ │ ├── gdbgui.tsx │ │ ├── processFeatures.ts │ │ ├── process_gdb_response.tsx │ │ ├── register_descriptions.ts │ │ ├── tests/ │ │ │ └── Util.jest.ts │ │ └── types.d.ts │ ├── static/ │ │ ├── css/ │ │ │ ├── gdbgui.css │ │ │ ├── splitjs-gdbgui.css │ │ │ └── tailwind.css │ │ └── vendor/ │ │ ├── css/ │ │ │ ├── animate.css │ │ │ ├── gdbgui_awesomeplete.css │ │ │ └── pygments/ │ │ │ ├── emacs.css │ │ │ ├── light.css │ │ │ ├── monokai.css │ │ │ └── vim.css │ │ └── js/ │ │ └── splitjs.min-1.2.0.js │ └── templates/ │ ├── dashboard.html │ └── gdbgui.html ├── images/ │ ├── gdbgui.xcf │ ├── gdbgui_small.xcf │ └── gdbgui_square.xcf ├── jest.config.js ├── make_executable.py ├── mkdocs.yml ├── noxfile.py ├── package.json ├── postcss.config.js ├── requirements.in ├── requirements.txt ├── setup.py ├── tailwind.config.js ├── tests/ │ ├── __init__.py │ ├── test_backend.py │ ├── test_cli.py │ ├── test_ptylib.py │ └── test_sessionmanager.py ├── tsconfig.json ├── tslint.json └── webpack.config.js