1 write to ArgumentPlaceholders
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7479
this.
ArgumentPlaceholders
= argumentPlaceholders;
17 references to ArgumentPlaceholders
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder.ValueChecks.cs (1)
569
implicitIndexer.
ArgumentPlaceholders
,
Binder\RefSafetyAnalysis.cs (1)
902
Debug.Assert(node.
ArgumentPlaceholders
.All(p => p is BoundImplicitIndexerValuePlaceholder { Type.SpecialType: SpecialType.System_Int32 }));
BoundTree\BoundImplicitIndexerAccess.cs (1)
15
this.IndexerOrSliceAccess, this.
ArgumentPlaceholders
, this.Type);
BoundTree\NullabilityRewriter.cs (2)
218
updatedNode = node.Update(receiver, argument, lengthOrCountAccess, node.ReceiverPlaceholder, indexerAccess, node.
ArgumentPlaceholders
, infoAndType.Type!);
223
updatedNode = node.Update(receiver, argument, lengthOrCountAccess, node.ReceiverPlaceholder, indexerAccess, node.
ArgumentPlaceholders
, node.Type);
Generated\BoundNodes.xml.Generated.cs (3)
7499
if (receiver != this.Receiver || argument != this.Argument || lengthOrCountAccess != this.LengthOrCountAccess || receiverPlaceholder != this.ReceiverPlaceholder || indexerOrSliceAccess != this.IndexerOrSliceAccess || argumentPlaceholders != this.
ArgumentPlaceholders
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11965
ImmutableArray<BoundImplicitIndexerValuePlaceholder> argumentPlaceholders = node.
ArgumentPlaceholders
;
16770
new TreeDumperNode("argumentPlaceholders", null, from x in node.
ArgumentPlaceholders
select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (9)
479
Debug.Assert(node.
ArgumentPlaceholders
.Length == 1);
561
Debug.Assert(node.
ArgumentPlaceholders
.Length == 1);
562
var argumentPlaceholder = node.
ArgumentPlaceholders
[0];
771
Debug.Assert(node.
ArgumentPlaceholders
.Length == 2);
982
Debug.Assert(node.
ArgumentPlaceholders
.Length == 2);
983
AddPlaceholderReplacement(node.
ArgumentPlaceholders
[0], startExpr);
984
AddPlaceholderReplacement(node.
ArgumentPlaceholders
[1], rangeSizeExpr);
989
RemovePlaceholderReplacement(node.
ArgumentPlaceholders
[0]);
990
RemovePlaceholderReplacement(node.
ArgumentPlaceholders
[1]);