File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ The PEG syntax is well described on page 2 in the [document](http://www.brynosau
34
34
* ` exp⇑label ` or ` exp^label ` (Syntax sugar for ` (exp / %recover(label)) ` )
35
35
* ` label { message "..." } ` (Error message instruction)
36
36
* ` { no_ast_opt } ` (No AST node optimazation instruction)
37
+
38
+ The following syntax is available with ` CPPPEGLIB_SYMBOL_TABLE_SUPPORT ` .
39
+
37
40
* ` { declare_symbol "..." } ` (Declare symbol instruction)
38
41
* ` { check_symbol "..." } ` (Check symbol instruction)
39
42
@@ -462,6 +465,8 @@ See actual usages in the [AST calculator example](https://github.com/yhirose/cpp
462
465
Symbol Table
463
466
------------
464
467
468
+ NOTE: This feature is available with ` CPPPEGLIB_SYMBOL_TABLE_SUPPORT ` .
469
+
465
470
Simple symbol table support is available with ` declare_symbol ` and ` check_symbol ` instructions.
466
471
467
472
``` peg
You can’t perform that action at this time.
0 commit comments