Esempio n. 1
0
void State::MeltWith(State *s) { // copy actions of s to state
	Action *a;
	for (Action *action = s->firstAction; action != NULL; action = action->next) {
		a = new Action(action->typ, action->sym, action->tc);
		a->AddTargets(action);
		AddAction(a);
	}
}