stage4/generate_iec/generate_iec.cc
changeset 3 38850ee685e6
parent 1 5d893a68be6e
child 7 0df673a4a561
equal deleted inserted replaced
2:cecf2a950ec8 3:38850ee685e6
  1133   symbol->from_steps->accept(*this);
  1133   symbol->from_steps->accept(*this);
  1134   s4o.print("TO ");
  1134   s4o.print("TO ");
  1135   symbol->to_steps->accept(*this);
  1135   symbol->to_steps->accept(*this);
  1136   s4o.indent_right();
  1136   s4o.indent_right();
  1137   s4o.print(s4o.indent_spaces);
  1137   s4o.print(s4o.indent_spaces);
  1138   symbol->transition_condition->accept(*this);
  1138   if (symbol->transition_condition_il != NULL) {
       
  1139   	symbol->transition_condition_il->accept(*this);
       
  1140   }
       
  1141   if (symbol->transition_condition_st != NULL) {
       
  1142   	symbol->transition_condition_st->accept(*this);
       
  1143   }
  1139   s4o.indent_left();
  1144   s4o.indent_left();
  1140   s4o.print(s4o.indent_spaces);
  1145   s4o.print(s4o.indent_spaces);
  1141   s4o.print("END_TRANSITION");
  1146   s4o.print("END_TRANSITION");
  1142   return NULL;
  1147   return NULL;
  1143 }
  1148 }