Closed NahuelM97 closed 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); }
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); }