2 instantiations of BoundImplicitIndexerValuePlaceholder
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Expressions.cs (1)
9760
var argumentPlaceholders = ImmutableArray.Create(new
BoundImplicitIndexerValuePlaceholder
(convertedArguments[0].Syntax, int32) { WasCompilerGenerated = true });
Generated\BoundNodes.xml.Generated.cs (1)
714
var result = new
BoundImplicitIndexerValuePlaceholder
(this.Syntax, type, this.HasErrors);
26 references to BoundImplicitIndexerValuePlaceholder
Microsoft.CodeAnalysis.CSharp (26)
Binder\Binder_Expressions.cs (6)
10361
out ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders,
10393
out ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders,
10426
var
intPlaceholder = new BoundImplicitIndexerValuePlaceholder(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
10495
out BoundExpression indexerOrSliceAccess, out ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders)
10497
var
startArgumentPlaceholder = new BoundImplicitIndexerValuePlaceholder(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
10498
var
lengthArgumentPlaceholder = new BoundImplicitIndexerValuePlaceholder(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
Binder\RefSafetyAnalysis.cs (2)
239
case
BoundImplicitIndexerValuePlaceholder
:
966
Debug.Assert(node.ArgumentPlaceholders.All(p => p is
BoundImplicitIndexerValuePlaceholder
{ Type.SpecialType: SpecialType.System_Int32 }));
FlowAnalysis\NullableWalker.cs (1)
11413
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
Generated\BoundNodes.xml.Generated.cs (14)
710
public
BoundImplicitIndexerValuePlaceholder
Update(TypeSymbol type)
714
var
result = new BoundImplicitIndexerValuePlaceholder(this.Syntax, type, this.HasErrors);
7450
public BoundImplicitIndexerAccess(SyntaxNode syntax, BoundExpression receiver, BoundExpression argument, BoundExpression lengthOrCountAccess, BoundImplicitIndexerReceiverPlaceholder receiverPlaceholder, BoundExpression indexerOrSliceAccess, ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders, TypeSymbol type, bool hasErrors = false)
7480
public ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> ArgumentPlaceholders { get; }
7485
public BoundImplicitIndexerAccess Update(BoundExpression receiver, BoundExpression argument, BoundExpression lengthOrCountAccess, BoundImplicitIndexerReceiverPlaceholder receiverPlaceholder, BoundExpression indexerOrSliceAccess, ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders, TypeSymbol type)
8879
return VisitImplicitIndexerValuePlaceholder((
BoundImplicitIndexerValuePlaceholder
)node, arg);
9339
public virtual R VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node, A arg) => this.DefaultVisit(node, arg);
9575
public virtual BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node) => this.DefaultVisit(node);
9831
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node) => null;
10886
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
12118
ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders = node.ArgumentPlaceholders;
12518
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
12525
BoundImplicitIndexerValuePlaceholder
updatedNode = node.Update(infoAndType.Type!);
15196
public override TreeDumperNode VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node, object? arg) => new TreeDumperNode("implicitIndexerValuePlaceholder", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter.cs (1)
1227
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (2)
423
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
562
var
argumentPlaceholder = node.ArgumentPlaceholders[0];