gitextract_hqqsamgp/ ├── .github/ │ └── workflows/ │ ├── analysis.yml │ ├── docs.yaml │ └── main.yml ├── .gitignore ├── 3rdparty/ │ └── doctest/ │ └── doctest.h ├── CMakeLists.txt ├── ChangeLog ├── INSTALL ├── LICENSE ├── README.md ├── STYLE.md ├── cmake/ │ └── UseLATEX.cmake ├── doc/ │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── ipr.bib │ ├── macro.tex │ ├── ref.tex │ └── user-guide.tex ├── include/ │ ├── ChangeLog │ └── ipr/ │ ├── impl │ ├── input │ ├── lexer │ ├── node-category │ ├── std-preamble │ └── utility-impl ├── infra/ │ └── Analysis.ruleset ├── src/ │ ├── ChangeLog │ ├── builtin.def │ ├── cxx-ipr-io.cxx │ ├── cxx-ipr-io.ixx │ ├── cxx-ipr-syntax.ixx │ ├── cxx-ipr-traversal.cxx │ ├── cxx-ipr-traversal.ixx │ ├── cxx-ipr-vocabulary.ixx │ ├── cxx-ipr.cxx │ ├── cxx-ipr.ixx │ ├── impl.cxx │ ├── input.cxx │ └── utility.cxx └── tests/ ├── CMakeLists.txt └── unit-tests/ ├── CMakeLists.txt ├── conversions.cxx ├── lines.cxx ├── main.cxx ├── phased-eval.cxx ├── region-owner.cxx ├── simple.cxx ├── specifiers.cxx ├── warehouse.cxx └── words.cxx