startsIn method

bool startsIn(
  1. SourceRange otherRange
)

Return true if this source range starts in the otherRange.

Implementation

bool startsIn(SourceRange otherRange) => otherRange.contains(offset);