@@ -2347,17 +2347,17 @@ property_expr_proper:
2347
2347
| sequence_expr " #=#" property_expr
2348
2348
{ init ($$, ID_sva_nonoverlapped_followed_by); mto ($$, $1 ); mto ($$, $3 ); }
2349
2349
| " nexttime" property_expr
2350
- { init ($$, " sva_nexttime " ); mto ($$, $2 ); }
2350
+ { init ($$, ID_sva_nexttime ); mto ($$, $2 ); }
2351
2351
| " nexttime" ' [' constant_expression ' ]' property_expr %prec " nexttime"
2352
- { init ($$, " sva_indexed_nexttime " ); mto ($$, $3 ); mto ($$, $5 ); }
2352
+ { init ($$, ID_sva_indexed_nexttime ); mto ($$, $3 ); mto ($$, $5 ); }
2353
2353
| " s_nexttime" property_expr
2354
- { init ($$, " sva_s_nexttime " ); mto ($$, $2 ); }
2354
+ { init ($$, ID_sva_s_nexttime ); mto ($$, $2 ); }
2355
2355
| " s_nexttime" ' [' constant_expression ' ]' property_expr %prec " s_nexttime"
2356
- { init ($$, " sva_indexed_s_nexttime " ); mto ($$, $3 ); mto ($$, $5 ); }
2356
+ { init ($$, ID_sva_indexed_s_nexttime ); mto ($$, $3 ); mto ($$, $5 ); }
2357
2357
| " always" ' [' cycle_delay_const_range_expression ' ]' property_expr %prec " always"
2358
2358
{ init ($$, ID_sva_ranged_always); swapop ($$, $3 ); mto ($$, $5 ); }
2359
2359
| " always" property_expr
2360
- { init ($$, " sva_always " ); mto ($$, $2 ); }
2360
+ { init ($$, ID_sva_always ); mto ($$, $2 ); }
2361
2361
| " s_always" ' [' constant_range ' ]' property_expr %prec " s_always"
2362
2362
{ init ($$, ID_sva_s_always); swapop ($$, $3 ); mto ($$, $5 ); }
2363
2363
| " s_eventually" property_expr
@@ -2367,13 +2367,13 @@ property_expr_proper:
2367
2367
| " s_eventually" ' [' cycle_delay_const_range_expression ' ]' property_expr %prec " s_eventually"
2368
2368
{ init ($$, ID_sva_ranged_s_eventually); swapop ($$, $3 ); mto ($$, $5 ); }
2369
2369
| property_expr " until" property_expr
2370
- { init ($$, " sva_until " ); mto ($$, $1 ); mto ($$, $3 ); }
2370
+ { init ($$, ID_sva_until ); mto ($$, $1 ); mto ($$, $3 ); }
2371
2371
| property_expr " s_until" property_expr
2372
- { init ($$, " sva_s_until " ); mto ($$, $1 ); mto ($$, $3 ); }
2372
+ { init ($$, ID_sva_s_until ); mto ($$, $1 ); mto ($$, $3 ); }
2373
2373
| property_expr " until_with" property_expr
2374
- { init ($$, " sva_until_with " ); mto ($$, $1 ); mto ($$, $3 ); }
2374
+ { init ($$, ID_sva_until_with ); mto ($$, $1 ); mto ($$, $3 ); }
2375
2375
| property_expr " s_until_with" property_expr
2376
- { init ($$, " sva_s_until_with " ); mto ($$, $1 ); mto ($$, $3 ); }
2376
+ { init ($$, ID_sva_s_until_with ); mto ($$, $1 ); mto ($$, $3 ); }
2377
2377
| property_expr " implies" property_expr
2378
2378
{ init ($$, ID_sva_implies); mto ($$, $1 ); mto ($$, $3 ); }
2379
2379
| property_expr " iff" property_expr
0 commit comments