5 instantiations of BoundImplicitIndexerValuePlaceholder
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Expressions.cs (4)
10026
var argumentPlaceholders = ImmutableArray.Create(new
BoundImplicitIndexerValuePlaceholder
(convertedArguments[0].Syntax, int32) { WasCompilerGenerated = true });
10693
var intPlaceholder = new
BoundImplicitIndexerValuePlaceholder
(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
10764
var startArgumentPlaceholder = new
BoundImplicitIndexerValuePlaceholder
(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
10765
var lengthArgumentPlaceholder = new
BoundImplicitIndexerValuePlaceholder
(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
Generated\BoundNodes.xml.Generated.cs (1)
717
var result = new
BoundImplicitIndexerValuePlaceholder
(this.Syntax, type, this.HasErrors);
25 references to BoundImplicitIndexerValuePlaceholder
Microsoft.CodeAnalysis.CSharp (25)
Binder\Binder_Expressions.cs (6)
10628
out ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders,
10660
out ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders,
10693
var
intPlaceholder = new BoundImplicitIndexerValuePlaceholder(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
10762
out BoundExpression indexerOrSliceAccess, out ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders)
10764
var
startArgumentPlaceholder = new BoundImplicitIndexerValuePlaceholder(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
10765
var
lengthArgumentPlaceholder = new BoundImplicitIndexerValuePlaceholder(syntax, Compilation.GetSpecialType(SpecialType.System_Int32)) { WasCompilerGenerated = true };
Binder\RefSafetyAnalysis.cs (2)
288
case
BoundImplicitIndexerValuePlaceholder
:
1102
Debug.Assert(node.ArgumentPlaceholders.All(p => p is
BoundImplicitIndexerValuePlaceholder
{ Type.SpecialType: SpecialType.System_Int32 }));
FlowAnalysis\NullableWalker.cs (1)
12149
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
Generated\BoundNodes.xml.Generated.cs (14)
713
public
BoundImplicitIndexerValuePlaceholder
Update(TypeSymbol type)
717
var
result = new BoundImplicitIndexerValuePlaceholder(this.Syntax, type, this.HasErrors);
7598
public BoundImplicitIndexerAccess(SyntaxNode syntax, BoundExpression receiver, BoundExpression argument, BoundExpression lengthOrCountAccess, BoundImplicitIndexerReceiverPlaceholder receiverPlaceholder, BoundExpression indexerOrSliceAccess, ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders, TypeSymbol type, bool hasErrors = false)
7628
public ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> ArgumentPlaceholders { get; }
7633
public BoundImplicitIndexerAccess Update(BoundExpression receiver, BoundExpression argument, BoundExpression lengthOrCountAccess, BoundImplicitIndexerReceiverPlaceholder receiverPlaceholder, BoundExpression indexerOrSliceAccess, ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders, TypeSymbol type)
9120
return VisitImplicitIndexerValuePlaceholder((
BoundImplicitIndexerValuePlaceholder
)node, arg);
9590
public virtual R VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node, A arg) => this.DefaultVisit(node, arg);
9831
public virtual BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node) => this.DefaultVisit(node);
10092
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node) => null;
11173
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
12423
ImmutableArray<
BoundImplicitIndexerValuePlaceholder
> argumentPlaceholders = node.ArgumentPlaceholders;
12839
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
12846
BoundImplicitIndexerValuePlaceholder
updatedNode = node.Update(infoAndType.Type!);
15561
public override TreeDumperNode VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node, object? arg) => new TreeDumperNode("implicitIndexerValuePlaceholder", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (2)
462
public override BoundNode? VisitImplicitIndexerValuePlaceholder(
BoundImplicitIndexerValuePlaceholder
node)
601
var
argumentPlaceholder = node.ArgumentPlaceholders[0];