cppparser
cppparser copied to clipboard
A library to parse C/C++ source as AST
Hi, I would really like to use your parser even if it is not done yet. I find the deps a bit complicated though. For instance boost filesystem could be...
There are some cases with initializing static arrays in sequences which the parser fails to process. Example 1: ``` int main() { int variable, array_one[100], array_two[500]; return 0; } ```...
After extend `btyacc` (see diff bellow) to output an `EBNF` understood by https://www.bottlecaps.de/rr/ui and manually add the tokens from `parser.l` we can have a nice navigable railroad diagram. Copy and...
I have this snippet of code and I keep getting the error "Error: Unexpected '.', while in context=ctxGeneral(1), found at line#624". GCC/Clang both support this with out issue. void processor64::pipe_thread...