stage1_2/iec.y
changeset 51 d44158420983
parent 41 8998c8b24b60
child 52 f44458d1fa29
equal deleted inserted replaced
50:7cf30e1af797 51:d44158420983
  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 /*
  3719 | R_operator		{$$ = new qualifier_c(strdup("R"));}
  3720 | R		{$$ = new identifier_c(strdup("R"));}
  3720 | S_operator		{$$ = new qualifier_c(strdup("S"));}
  3721 | S		{$$ = new identifier_c(strdup("S"));}
       
  3722 */
       
  3723 | P		{$$ = new qualifier_c(strdup("P"));}
  3721 | P		{$$ = new qualifier_c(strdup("P"));}
  3724 ;
  3722 ;
  3725 
  3723 
  3726 timed_qualifier:
  3724 timed_qualifier:
  3727 L		{$$ = new timed_qualifier_c(strdup("L"));}
  3725 L		{$$ = new timed_qualifier_c(strdup("L"));}