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