1 write to EndOffsetExclusive
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
ILSpan.cs (1)
24EndOffsetExclusive = end;
9 references to EndOffsetExclusive
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (9)
ILSpan.cs (5)
27public bool Contains(int offset) => offset >= StartOffset && offset < EndOffsetExclusive; 28public bool Equals(ILSpan other) => StartOffset == other.StartOffset && EndOffsetExclusive == other.EndOffsetExclusive; 30public override int GetHashCode() => Hash.Combine(StartOffset.GetHashCode(), EndOffsetExclusive.GetHashCode()); 31public override string ToString() => $"[{StartOffset}, {EndOffsetExclusive})";
MethodContextReuseConstraints.cs (4)
68uint _endOffsetExclusive = initialSpan.EndOffsetExclusive; 76else if (ilOffset >= scope.EndOffsetExclusive) 78_startOffset = Math.Max(_startOffset, scope.EndOffsetExclusive); 83_endOffsetExclusive = Math.Min(_endOffsetExclusive, scope.EndOffsetExclusive);