Parse dotted new

This commit is contained in:
Wilson Snyder 2020-07-01 07:39:37 -04:00
parent 4d5e448664
commit e7bd44561c
1 changed files with 1 additions and 1 deletions

View File

@ -3036,7 +3036,7 @@ statement_item<nodep>: // IEEE: statement_item
// // Because we've joined class_constructor_declaration into generic functions
// // Way over-permissive;
// // IEEE: [ ySUPER '.' yNEW [ '(' list_of_arguments ')' ] ';' ]
| fexpr '.' class_new ';' { $$ = NULL; BBUNSUP($1, "Unsupported: dotted new"); }
| fexpr '.' class_new ';' { $$ = new AstDot($<fl>2, false, $1, $3); }
//
| statementVerilatorPragmas { $$ = $1; }
//