1 write to Index
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5546this.Index = index;
12 references to Index
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (2)
1193int index = e.Index; 1743return $"t{tempIdentifier(e)}={e.Kind}({tempName(e.Input)}[{e.Index}])";
Binder\PatternExplainer.cs (1)
432int index = e.Index;
BoundTree\BoundDagEvaluation.cs (3)
122public override int GetHashCode() => base.GetHashCode() ^ this.Index; 126this.Index == ((BoundDagIndexerEvaluation)obj).Index;
BoundTree\BoundDagTest.cs (1)
77return $"{i.GetOutputTempDebuggerDisplay()} = {i.Input.GetDebuggerDisplay()}[{i.Index}]";
Generated\BoundNodes.xml.Generated.cs (4)
5568if (!TypeSymbol.Equals(indexerType, this.IndexerType, TypeCompareKind.ConsiderEverything) || lengthTemp != this.LengthTemp || index != this.Index || indexerAccess != this.IndexerAccess || receiverPlaceholder != this.ReceiverPlaceholder || argumentPlaceholder != this.ArgumentPlaceholder || input != this.Input) 11635return node.Update(indexerType, lengthTemp, node.Index, indexerAccess, receiverPlaceholder, argumentPlaceholder, input); 13709return node.Update(indexerType, lengthTemp, node.Index, indexerAccess, receiverPlaceholder, argumentPlaceholder, input); 16222new TreeDumperNode("index", node.Index, null),
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (1)
264placeholderValues.Add(e.ArgumentPlaceholder, makeUnloweredIndexArgument(e.Index));