public Variable(Tipo tipo, Object valor, int linea, int columna, bool Constante) { this.Constante = Constante; this.tipo = tipo; this.valor = valor; }
public Variable(Tipo tipo, Object valor, int linea, int columna) { this.tipo = tipo; this.valor = valor; }
public Primitivo(Tipo tipo, Object valor) { this.tipo = tipo; this.valor = valor; }
/** * @param tipo Tipo del símbolo, el enum Tipo está en la clase Tipo * @param valor Valor del símbolo */ public Variable(Tipo tipo, Object valor) { this.tipo = tipo; this.valor = valor; }
public Tipo_MF(Tipo tipo, Object valor) : base(tipo, valor) { }