File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ TEST_CASE("Parsing hello world program")
8888
8989**This example is a real one and is part of actual unit test of CppParser**.
9090
91+ For AST traversing, see the [CppWriter](cppwriter), that uses the generated AST to create files.
92+
9193## Building CppParser
9294
9395### Get the source
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ Below is the program written as unit-test for validating the correctness of gene
3434
3535**This example is a real one and is part of actual unit test of CppParser**.
3636
37+ For AST traversing, see the [CppWriter](cppwriter), that uses the generated AST to create files.
38+
3739## Building CppParser
3840
3941### Get the source
Original file line number Diff line number Diff line change 1+ # cppwriter
2+
3+ ` cppwriter ` is a simple C++ code generation library.
4+
5+ ## Features
6+
7+ Creates C++ source files (including headers) from ` cppast ` .
8+ It is mainly used for:
9+ - As an example to show how to traverse the AST generated by the CppParser.
10+ - Testing the CppParser library.
11+
You can’t perform that action at this time.
0 commit comments