feat(furc): add compound statement

This one: { [statement]... }
This commit is contained in:
2026-06-01 17:23:00 +02:00
parent 55f4435670
commit 7caaaac4a0
10 changed files with 63 additions and 6 deletions
+2
View File
@@ -63,6 +63,8 @@ class return_statement_node;
using return_statement_node_h = node_handle<return_statement_node>;
class if_statement_node;
using if_statement_node_h = node_handle<if_statement_node>;
class compound_statement_node;
using compound_statement_node_h = node_handle<compound_statement_node>;
} // namespace ast
} // namespace furc