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)
797
implicitIndexer.
ArgumentPlaceholders
,
Binder\RefSafetyAnalysis.cs (1)
1058
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)
260
updatedNode = node.Update(receiver, argument, lengthOrCountAccess, node.ReceiverPlaceholder, indexerAccess, node.
ArgumentPlaceholders
, infoAndType.Type!);
265
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))
12135
ImmutableArray<BoundImplicitIndexerValuePlaceholder> argumentPlaceholders = node.
ArgumentPlaceholders
;
16948
new TreeDumperNode("argumentPlaceholders", null, from x in node.
ArgumentPlaceholders
select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (9)
518
Debug.Assert(node.
ArgumentPlaceholders
.Length == 1);
600
Debug.Assert(node.
ArgumentPlaceholders
.Length == 1);
601
var argumentPlaceholder = node.
ArgumentPlaceholders
[0];
811
Debug.Assert(node.
ArgumentPlaceholders
.Length == 2);
1022
Debug.Assert(node.
ArgumentPlaceholders
.Length == 2);
1023
AddPlaceholderReplacement(node.
ArgumentPlaceholders
[0], startExpr);
1024
AddPlaceholderReplacement(node.
ArgumentPlaceholders
[1], rangeSizeExpr);
1029
RemovePlaceholderReplacement(node.
ArgumentPlaceholders
[0]);
1030
RemovePlaceholderReplacement(node.
ArgumentPlaceholders
[1]);