stage4/generate_c/generate_c_inlinefcall.cc
changeset 408 34a5571c859c
parent 406 6381589697ff
child 410 c6486bd97392
child 500 0bb88139e471
equal deleted inserted replaced
407:2d77f0f77773 408:34a5571c859c
  1176 			symbol->transition_condition_il->accept(*this);
  1176 			symbol->transition_condition_il->accept(*this);
  1177 		}
  1177 		}
  1178 
  1178 
  1179 		// Transition condition is in ST
  1179 		// Transition condition is in ST
  1180 		if (symbol->transition_condition_st != NULL) {
  1180 		if (symbol->transition_condition_st != NULL) {
  1181 			symbol->transition_condition_st->accept(*this);
  1181 			function_call_iterator_c fc_iterator(symbol->transition_condition_st);
       
  1182 			symbol_c* function_call;
       
  1183 			while ((function_call = fc_iterator.next()) != NULL) {
       
  1184 				function_call->accept(*this);
       
  1185 			}
  1182 		}
  1186 		}
  1183 
  1187 
  1184 		return NULL;
  1188 		return NULL;
  1185 	}
  1189 	}
  1186 
  1190