NavarroFer / Taller1

Proyecto de Taller de Programacion 1. Universidad Nacional de Mar del Plata, Facultad de Ingeniería.
2 stars 0 forks source link

Modularizar el parser #71

Closed NahuelM97 closed 5 years ago

NahuelM97 commented 5 years ago

Actualmente tenemos (pseudo):

else if(instruction == "INSTRUCCION1") { if(cond) throw new exception if(otra cond) throw other exception ... else llamarMetodoEspecifico(param); }

Deberíamos tener

else if(instruction == "INSTRUCCION1") { chequearInstruccion1(param); }