Esempio n. 1
0
 internal Local(Compiler.CompilerContext ctx, Type type)
 {
     this.ctx = ctx;
     if (ctx != null)
     {
         value = ctx.GetFromPool(type);
     }
 }
Esempio n. 2
0
 internal Local(CompilerContext ctx, System.Type type)
 {
     this.ctx = ctx;
     if (ctx != null)
     {
         this.@value = ctx.GetFromPool(type);
     }
     this.type = type;
 }
Esempio n. 3
0
 internal Local(CompilerContext ctx, Type type)
 {
     this.ctx = ctx;
     if (ctx is object)
     {
         value = ctx.GetFromPool(type);
     }
     this.type = type;
 }
Esempio n. 4
0
 internal Local(Compiler.CompilerContext ctx, Type type)
 {
     this.ctx = ctx;
     if (ctx != null) { value = ctx.GetFromPool(type); }
     this.type = type;
 }