}
catch (Exception e) {
throw new InterpreterException("Línea " + nLinea + ": " + e.getMessage());
}
if (!tokenActual.lexemasIguales("TK_FIN_SENT") && !tokenActual.lexemasIguales("TK_SALIDA")) {
throw new NewLineException("Encontrado '" + this.devolverErrorMatch(tokenActual.getLexema().substring(3)) + "', esperaba 'salto de línea'.");
}
}
while (!tokenActual.lexemasIguales("TK_SALIDA"));
}