예제 #1
0
 public Variable(Tipo tipo, Object valor, int linea, int columna, bool Constante)
 {
     this.Constante = Constante;
     this.tipo      = tipo;
     this.valor     = valor;
 }
예제 #2
0
 public Variable(Tipo tipo, Object valor, int linea, int columna)
 {
     this.tipo  = tipo;
     this.valor = valor;
 }
예제 #3
0
 public Primitivo(Tipo tipo, Object valor)
 {
     this.tipo  = tipo;
     this.valor = valor;
 }
예제 #4
0
 /**
  * @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;
 }
예제 #5
0
 public Tipo_MF(Tipo tipo, Object valor) : base(tipo, valor)
 {
 }