1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:58:13 +00:00
serenity/Userland/Libraries/LibCpp
Itamar c96b6987c4 LibCpp: Add the beginning of a C++ parser
This parser will be used by the C++ langauge server to provide better
auto-complete (& maybe also other things in the future).

It is designed to be error tolerant, and keeps track of the position
spans of the AST nodes, which should be useful later for incremental
parsing.
2021-01-27 21:10:57 +01:00
..
AST.cpp LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00
AST.h LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00
CMakeLists.txt LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00
Lexer.cpp LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00
Lexer.h LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00
Parser.cpp LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00
Parser.h LibCpp: Add the beginning of a C++ parser 2021-01-27 21:10:57 +01:00