public SourceLineInfo(string uriString, Location start, Location end) { this.uriString = uriString; this.start = start; this.end = end; Validate(this); }
public bool LessOrEqual(Location that) { return this.value <= that.value; }
public Location(Location that) { this.value = that.value; }
public Location(Location that) { _value = that._value; }