merge method
Implementation
SourceRange merge(SourceRange other) => SourceRange(
start < other.start ? start : other.start,
end > other.end ? end : other.end,
);
SourceRange merge(SourceRange other) => SourceRange(
start < other.start ? start : other.start,
end > other.end ? end : other.end,
);