22 lines
1.4 KiB
Plaintext
22 lines
1.4 KiB
Plaintext
--- AST Definition (len 2773) ---
|
|
struct AST
|
|
{
|
|
union {
|
|
struct
|
|
{
|
|
Code InlineCmt; // Class, Constructor, Destructor, ...
|
|
--- MASKED AGGREGATION RESULT ---
|
|
## Files (Tier 3 - Focused)
|
|
|
|
### `tests/assets/gencpp_samples/ast.hpp` (Masked)
|
|
|
|
```hpp
|
|
struct AST
|
|
{
|
|
union {
|
|
struct
|
|
{
|
|
Code InlineCmt; // Class, Constructor, Destructor, Enum, Friend, Functon, Operator, OpCast, Struct, Typedef, Using, Variable
|
|
Code Attributes; // Class, Enum, Function, Struct, Typedef, Union, Using, Variable // TODO(Ed): Parameters can have attributes
|
|
Code Specs; // Class, Destructor, Function, Operator, Struct, Typename, Variable...
|