endsIn method
Return true if this source range ends inside the otherRange.
Implementation
bool endsIn(SourceRange otherRange) {
return otherRange.contains(end);
}
Return true if this source range ends inside the otherRange.
bool endsIn(SourceRange otherRange) {
return otherRange.contains(end);
}