gitextract_iw089xqt/ ├── .clang-format ├── .cmake-format ├── .github/ │ └── workflows/ │ ├── examples.yml │ ├── install.yml │ ├── macos.yml │ ├── style.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake/ │ ├── CPM.cmake │ └── tools.cmake ├── codecov.yaml ├── example/ │ ├── CMakeLists.txt │ ├── calculator.cpp │ ├── calculator_sequental.cpp │ ├── calculator_visitor.cpp │ ├── json_parser.cpp │ ├── python_indentation.cpp │ └── type_checker.cpp ├── glue/ │ ├── CMakeLists.txt │ ├── include/ │ │ └── peg_parser/ │ │ └── glue.h │ └── source/ │ └── glue.cpp ├── include/ │ └── peg_parser/ │ ├── generator.h │ ├── grammar.h │ ├── interpreter.h │ ├── parser.h │ └── presets.h ├── source/ │ ├── grammar.cpp │ ├── interpreter.cpp │ ├── parser.cpp │ └── presets.cpp └── test/ ├── CMakeLists.txt └── source/ ├── example.cpp ├── glue.cpp ├── main.cpp └── parser.cpp