File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1- KNOWNBUG
1+ CORE
22property_vs_typedef1.sv
33
44^EXIT=10$
55^SIGNAL=0$
66--
77--
8- This fails to parse.
Original file line number Diff line number Diff line change 1- KNOWNBUG
1+ CORE
22sequence_vs_typedef1.sv
33
44^EXIT=10$
55^SIGNAL=0$
66--
77--
8- This fails to parse.
Original file line number Diff line number Diff line change @@ -2514,11 +2514,11 @@ assertion_item_declaration:
25142514 ;
25152515
25162516property_declaration:
2517- TOK_PROPERTY property_identifier property_port_list_paren_opt ' ;'
2517+ TOK_PROPERTY any_identifier property_port_list_paren_opt ' ;'
25182518 property_spec semicolon_opt
25192519 TOK_ENDPROPERTY property_identifier_opt
25202520 { init ($$, ID_verilog_property_declaration);
2521- stack_expr ($$).set (ID_base_name, stack_expr ($2 ).id ( ));
2521+ stack_expr ($$).set (ID_base_name, stack_expr ($2 ).get (ID_base_name ));
25222522 mto ($$, $5 ); }
25232523 ;
25242524
@@ -2706,11 +2706,11 @@ property_case_item:
27062706
27072707sequence_declaration:
27082708 " sequence" { init ($$, ID_verilog_sequence_declaration); }
2709- sequence_identifier sequence_port_list_opt ' ;'
2709+ any_identifier sequence_port_list_opt ' ;'
27102710 sequence_expr semicolon_opt
27112711 " endsequence" sequence_identifier_opt
27122712 { $$=$2 ;
2713- stack_expr ($$).set (ID_base_name, stack_expr ($3 ).id ( ));
2713+ stack_expr ($$).set (ID_base_name, stack_expr ($3 ).get (ID_base_name ));
27142714 mto ($$, $6 );
27152715 }
27162716 ;
You can’t perform that action at this time.
0 commit comments