stage1_2/iec.y
changeset 52 f44458d1fa29
parent 51 d44158420983
child 68 b0a43002dcac
equal deleted inserted replaced
51:d44158420983 52:f44458d1fa29
  3714 qualifier:
  3714 qualifier:
  3715 N		{$$ = new qualifier_c(strdup("N"));}
  3715 N		{$$ = new qualifier_c(strdup("N"));}
  3716 /* NOTE: the following two clash with the R and S IL operators.
  3716 /* NOTE: the following two clash with the R and S IL operators.
  3717  * It will have to be handled when we include parsing of SFC...
  3717  * It will have to be handled when we include parsing of SFC...
  3718  */
  3718  */
  3719 | R_operator		{$$ = new qualifier_c(strdup("R"));}
  3719 | R		{$$ = new qualifier_c(strdup("R"));}
  3720 | S_operator		{$$ = new qualifier_c(strdup("S"));}
  3720 | S		{$$ = new qualifier_c(strdup("S"));}
  3721 | P		{$$ = new qualifier_c(strdup("P"));}
  3721 | P		{$$ = new qualifier_c(strdup("P"));}
  3722 ;
  3722 ;
  3723 
  3723 
  3724 timed_qualifier:
  3724 timed_qualifier:
  3725 L		{$$ = new timed_qualifier_c(strdup("L"));}
  3725 L		{$$ = new timed_qualifier_c(strdup("L"));}