public bool addFuncMet(FuncionInstruccion func, string idUnico) { if (this.funciones.ContainsKey(func.Id.ToLower())) { return(false); } this.funciones.Add(func.Id.ToLower(), new SimboloFuncionMetodo(func, idUnico)); return(true); }
public SimboloFuncionMetodo(FuncionInstruccion func, string idUnico) { throw new NotImplementedException(); }