public DafnyVariable(string name, Microsoft.Dafny.Type type, bool isGhost)
 {
     Name = name;
     Type = type;
     IsDeclaredInSelectedStatements = false;
     IsUsedAfterSelectedStatements  = false;
     IsOnHeap = false;
     IsGhost  = isGhost;
 }
Пример #2
0
 public DVariable(string name, Microsoft.Dafny.Type type)
 {
     this.name = name;
     this.type = type;
 }