aboutsummaryrefslogtreecommitdiff
path: root/src/main/antlr4/FIRRTL.g4
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/antlr4/FIRRTL.g4')
-rw-r--r--src/main/antlr4/FIRRTL.g47
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main/antlr4/FIRRTL.g4 b/src/main/antlr4/FIRRTL.g4
index 8bdbbea3..c49bb948 100644
--- a/src/main/antlr4/FIRRTL.g4
+++ b/src/main/antlr4/FIRRTL.g4
@@ -27,11 +27,6 @@ import firrtl.LexerHelper;
* PARSER RULES
*------------------------------------------------------------------*/
-/* TODO
- * - Add [info] support (all over the place)
- * - Add support for extmodule
-*/
-
// Does there have to be at least one module?
circuit
: 'circuit' id ':' info? INDENT module* DEDENT
@@ -90,7 +85,7 @@ simple_reset
reset_block
: INDENT simple_reset info? NEWLINE DEDENT
- | '(' + simple_reset + ')'
+ | '(' simple_reset ')'
;
stmt