1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:27:45 +00:00

LibCpp: Start working on a C preprocessor

We currently handle basic #define statements as well as ifdef and else
branches.
This commit is contained in:
Itamar 2021-02-06 15:51:04 +02:00 committed by Andreas Kling
parent 2d2b3ba5ed
commit bed3261723
5 changed files with 283 additions and 0 deletions

View file

@ -2,6 +2,7 @@ set(SOURCES
AST.cpp
Lexer.cpp
Parser.cpp
Preprocessor.cpp
SyntaxHighlighter.cpp
)