aboutsummaryrefslogtreecommitdiff
path: root/src/MoonP/moon_ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/MoonP/moon_ast.h')
-rw-r--r--src/MoonP/moon_ast.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/MoonP/moon_ast.h b/src/MoonP/moon_ast.h
index 91d7614..16f7801 100644
--- a/src/MoonP/moon_ast.h
+++ b/src/MoonP/moon_ast.h
@@ -527,9 +527,15 @@ AST_NODE(TableLit)
527 AST_MEMBER(TableLit, &sep, &values) 527 AST_MEMBER(TableLit, &sep, &values)
528AST_END(TableLit) 528AST_END(TableLit)
529 529
530AST_NODE(TableBlockIndent)
531 ast_ptr<true, Seperator_t> sep;
532 ast_sel_list<false, variable_pair_t, normal_pair_t, TableBlockIndent_t> values;
533 AST_MEMBER(TableBlockIndent, &sep, &values)
534AST_END(TableBlockIndent)
535
530AST_NODE(TableBlock) 536AST_NODE(TableBlock)
531 ast_ptr<true, Seperator_t> sep; 537 ast_ptr<true, Seperator_t> sep;
532 ast_sel_list<false, variable_pair_t, normal_pair_t> values; 538 ast_sel_list<false, variable_pair_t, normal_pair_t, TableBlockIndent_t> values;
533 AST_MEMBER(TableBlock, &sep, &values) 539 AST_MEMBER(TableBlock, &sep, &values)
534AST_END(TableBlock) 540AST_END(TableBlock)
535 541