File tree 4 files changed +31
-0
lines changed
4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ KNOWNBUG
2
+ new1.sv
3
+
4
+ ^EXIT=0$
5
+ ^SIGNAL=0$
6
+ --
7
+ --
8
+ The class is not yet recognized as a type.
Original file line number Diff line number Diff line change
1
+ class myClass ;
2
+ endclass
3
+
4
+ module main ;
5
+ myClass x = new ;
6
+ endmodule
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ IREP_ID_ONE(verilog_implicit_typecast)
86
86
IREP_ID_ONE (verilog_unique )
87
87
IREP_ID_ONE (verilog_unique0 )
88
88
IREP_ID_ONE (verilog_priority )
89
+ IREP_ID_ONE (verilog_new )
89
90
IREP_ID_ONE (verilog_non_indexed_part_select )
90
91
IREP_ID_ONE (verilog_indexed_part_select_plus )
91
92
IREP_ID_ONE (verilog_indexed_part_select_minus )
Original file line number Diff line number Diff line change @@ -1447,6 +1447,11 @@ enum_name_declaration_list:
1447
1447
class_scope: class_type TOK_COLONCOLON
1448
1448
;
1449
1449
1450
+ class_scope_opt:
1451
+ /* Optional */
1452
+ | class_scope
1453
+ ;
1454
+
1450
1455
integer_type:
1451
1456
integer_vector_type
1452
1457
| integer_atom_type
@@ -1863,6 +1868,12 @@ variable_decl_assignment:
1863
1868
{ $$ = $1 ; stack_expr ($$).id (ID_declarator);
1864
1869
addswap ($$, ID_type, $2 );
1865
1870
addswap ($$, ID_value, $4 ); }
1871
+ | variable_identifier variable_dimension_brace ' =' class_new
1872
+ ;
1873
+
1874
+ class_new:
1875
+ TOK_NEW list_of_arguments_paren_opt
1876
+ { init ($$, ID_verilog_new); mto ($$, $2 ); }
1866
1877
;
1867
1878
1868
1879
// System Verilog standard 1800-2017
@@ -3639,6 +3650,11 @@ list_of_arguments_paren:
3639
3650
{ $$ = $2 ; }
3640
3651
;
3641
3652
3653
+ list_of_arguments_paren_opt:
3654
+ /* Optional */
3655
+ | list_of_arguments_paren
3656
+ ;
3657
+
3642
3658
list_of_arguments:
3643
3659
/* Optional */
3644
3660
{ init ($$); }
You can’t perform that action at this time.
0 commit comments