1 write to StartIndex
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5593this.StartIndex = startIndex;
12 references to StartIndex
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (2)
1158offset += slice.StartIndex - slice.EndIndex; 1173index = index < 0 ? index - slice.EndIndex : index + slice.StartIndex;
Binder\PatternExplainer.cs (2)
416if (slice.StartIndex - slice.EndIndex > lengthValue) 456subpatterns.Insert(slice.StartIndex, $".. {slicePattern}");
BoundTree\BoundDagEvaluation.cs (3)
137public override int GetHashCode() => base.GetHashCode() ^ this.StartIndex ^ this.EndIndex; 142this.StartIndex == e.StartIndex && this.EndIndex == e.EndIndex;
Generated\BoundNodes.xml.Generated.cs (4)
5617if (!TypeSymbol.Equals(sliceType, this.SliceType, TypeCompareKind.ConsiderEverything) || lengthTemp != this.LengthTemp || startIndex != this.StartIndex || endIndex != this.EndIndex || indexerAccess != this.IndexerAccess || receiverPlaceholder != this.ReceiverPlaceholder || argumentPlaceholder != this.ArgumentPlaceholder || input != this.Input) 11643return node.Update(sliceType, lengthTemp, node.StartIndex, node.EndIndex, indexerAccess, receiverPlaceholder, argumentPlaceholder, input); 13718return node.Update(sliceType, lengthTemp, node.StartIndex, node.EndIndex, indexerAccess, receiverPlaceholder, argumentPlaceholder, input); 16232new TreeDumperNode("startIndex", node.StartIndex, null),
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (1)
328return new BoundRangeExpression(e.Syntax, makeUnloweredIndexArgument(e.StartIndex), end,