stage3/constant_folding.hh
changeset 780 9fbdf8a7430e
parent 774 979af2009d88
child 781 577547327f67
equal deleted inserted replaced
776:96a1199d0739 780:9fbdf8a7430e
   220 
   220 
   221     /********************************/
   221     /********************************/
   222     /* B 3.2.3 Selection Statements */
   222     /* B 3.2.3 Selection Statements */
   223     /********************************/
   223     /********************************/
   224     void *visit(if_statement_c *symbol);
   224     void *visit(if_statement_c *symbol);
       
   225 
       
   226     /********************************/
       
   227     /* B 3.2.4 Iteration Statements */
       
   228     /********************************/
       
   229     void *visit(for_statement_c *symbol);
       
   230     void *visit(while_statement_c *symbol);
       
   231     void *visit(repeat_statement_c *symbol);
   225 };
   232 };
   226 
   233