stage4/generate_c/generate_c_inlinefcall.cc
changeset 500 0bb88139e471
parent 498 0637a4490c8c
parent 408 34a5571c859c
child 505 21be0f2f242d
equal deleted inserted replaced
499:58d0c3b3c53b 500:0bb88139e471
  1181 			symbol->transition_condition_il->accept(*this);
  1181 			symbol->transition_condition_il->accept(*this);
  1182 		}
  1182 		}
  1183 
  1183 
  1184 		// Transition condition is in ST
  1184 		// Transition condition is in ST
  1185 		if (symbol->transition_condition_st != NULL) {
  1185 		if (symbol->transition_condition_st != NULL) {
  1186 			symbol->transition_condition_st->accept(*this);
  1186 			function_call_iterator_c fc_iterator(symbol->transition_condition_st);
       
  1187 			symbol_c* function_call;
       
  1188 			while ((function_call = fc_iterator.next()) != NULL) {
       
  1189 				function_call->accept(*this);
       
  1190 			}
  1187 		}
  1191 		}
  1188 
  1192 
  1189 		return NULL;
  1193 		return NULL;
  1190 	}
  1194 	}
  1191 
  1195