Example #1
0
 public Entorno(Entorno anterior, String nombreEntorno)
 {
     this.nombreEntorno = nombreEntorno;
     this.anterior      = anterior;
     this.tabla         = new Dictionary <string, Variable>();
 }