diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-04 23:22:02 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-04 23:22:02 (GMT) |
commit | ffe750d87e747a57f7bf85281b87e4894cbf92b2 (patch) | |
tree | e63c03464a1522bf93cb7e4cb34d9c3e47176ae3 /src/parser.y | |
parent | ada8185c769784d11381a78c925531efb9980777 (diff) |
Temporarily deactivate new feature: variable declarations in child block
Diffstat (limited to 'src/parser.y')
-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 */ | |