Exemplo n.º 1
0
 public Variable(string name, Func <IType> typeInitializer, Expr constantValue = null)
 {
     this.Name          = name;
     this.type          = new LazyType(typeInitializer);
     this.ConstantValue = constantValue;
 }
Exemplo n.º 2
0
 public Variable(string name, IType type, Expr constantValue = null)
 {
     this.Name          = name;
     this.type          = new LazyType(type);
     this.ConstantValue = constantValue;
 }