diff options
-rw-r--r-- | src/parser.y | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/parser.y b/src/parser.y index 464f992..2b07f14 100644 --- a/src/parser.y +++ b/src/parser.y @@ -228,8 +228,13 @@ child_statement: '{' child_statements '}' | module_instantiation { if ($1) scope_stack.top()->addChild($1); -} | +} ; + +/* + FIXME: This allows for variable declaration in child blocks, not activated yet + | assignment ; +*/ child_statements: /* empty */ | |