Esempio n. 1
0
 public Env dup() {
   Env env = new Env();
   env.next = this;
   env.outer = this.outer;
   env.packge = this.packge;
   env.enclosingClass = this.enclosingClass;
   env.scope = this.scope;
   env.namedImports = this.namedImports;
   env.starImports = this.starImports;
   env.staticStarImports = this.staticStarImports;
   return env;
 }