Esempio n. 1
0
 public PoolScope(Pool pool, GlobalScope globalScope)
     : base(globalScope)
 {
     if (pool == null)
         throw new ArgumentNullException("pool");
     this.Pool = pool;
 }
Esempio n. 2
0
 public PoolVariableScope(SmalltalkClass cls, GlobalScope outerScope)
     : base(cls, outerScope)
 {
 }