in lib/src/relative_span_scanner.dart [75:79]
FileSpan spanFrom(LineScannerState startState, [LineScannerState? endState]) {
final endPosition = endState == null ? position : endState.position;
return _sourceFile.span(_startLocation.offset + startState.position,
_startLocation.offset + endPosition);
}