Esempio n. 1
0
 public SourceLineInfo(string uriString, Location start, Location end)
 {
     this.uriString = uriString;
     this.start = start;
     this.end = end;
     Validate(this);
 }
Esempio n. 2
0
 public bool LessOrEqual(Location that) {
     return this.value <= that.value;
 }
Esempio n. 3
0
 public Location(Location that) {
     this.value = that.value;
 }
Esempio n. 4
0
 public Location(Location that)
 {
     _value = that._value;
 }