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