1 write to EndIndex
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5594
this.
EndIndex
= endIndex;
11 references to EndIndex
Microsoft.CodeAnalysis.CSharp (11)
Binder\DecisionDagBuilder.cs (2)
1184
offset += slice.StartIndex - slice.
EndIndex
;
1199
index = index < 0 ? index - slice.
EndIndex
: index + slice.StartIndex;
Binder\PatternExplainer.cs (1)
416
if (slice.StartIndex - slice.
EndIndex
> lengthValue)
BoundTree\BoundDagEvaluation.cs (3)
137
public override int GetHashCode() => base.GetHashCode() ^ this.StartIndex ^ this.
EndIndex
;
142
this.StartIndex == e.StartIndex && this.
EndIndex
== e.
EndIndex
;
Generated\BoundNodes.xml.Generated.cs (4)
5617
if (!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)
11645
return node.Update(sliceType, lengthTemp, node.StartIndex, node.
EndIndex
, indexerAccess, receiverPlaceholder, argumentPlaceholder, input);
13720
return node.Update(sliceType, lengthTemp, node.StartIndex, node.
EndIndex
, indexerAccess, receiverPlaceholder, argumentPlaceholder, input);
16235
new TreeDumperNode("endIndex", node.
EndIndex
, null),
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (1)
324
var end = new BoundFromEndIndexExpression(_factory.Syntax, _factory.Literal(-e.
EndIndex
),