2 instantiations of BoundListPatternIndexPlaceholder
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Patterns.cs (1)
453argumentPlaceholder = new BoundListPatternIndexPlaceholder(node, systemIndexType) { WasCompilerGenerated = true };
Generated\BoundNodes.xml.Generated.cs (1)
819var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.HasErrors);
29 references to BoundListPatternIndexPlaceholder
Microsoft.CodeAnalysis.CSharp (29)
Binder\Binder_Patterns.cs (3)
374BoundListPatternIndexPlaceholder? argumentPlaceholder; 427out BoundExpression indexerAccess, [NotNull] out BoundExpression? lengthAccess, out BoundListPatternReceiverPlaceholder? receiverPlaceholder, out BoundListPatternIndexPlaceholder argumentPlaceholder) 448out BoundListPatternIndexPlaceholder argumentPlaceholder, BindingDiagnosticBag diagnostics,
Binder\UnionMatchingRewriter.cs (1)
140BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder;
FlowAnalysis\NullableWalker_Patterns.cs (1)
1263public override BoundNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)
Generated\BoundNodes.xml.Generated.cs (22)
815public BoundListPatternIndexPlaceholder Update(TypeSymbol type) 819var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.HasErrors); 5576public BoundDagIndexerEvaluation(SyntaxNode syntax, TypeSymbol indexerType, BoundDagTemp lengthTemp, int index, BoundExpression indexerAccess, BoundListPatternReceiverPlaceholder receiverPlaceholder, BoundListPatternIndexPlaceholder argumentPlaceholder, BoundDagTemp input, bool hasErrors = false) 5604public BoundListPatternIndexPlaceholder ArgumentPlaceholder { get; } 5609public BoundDagIndexerEvaluation Update(TypeSymbol indexerType, BoundDagTemp lengthTemp, int index, BoundExpression indexerAccess, BoundListPatternReceiverPlaceholder receiverPlaceholder, BoundListPatternIndexPlaceholder argumentPlaceholder, BoundDagTemp input) 8367public BoundListPattern(SyntaxNode syntax, ImmutableArray<BoundPattern> subpatterns, bool hasSlice, BoundExpression? lengthAccess, BoundExpression? indexerAccess, BoundListPatternReceiverPlaceholder? receiverPlaceholder, BoundListPatternIndexPlaceholder? argumentPlaceholder, Symbol? variable, BoundExpression? variableAccess, TypeSymbol inputType, TypeSymbol narrowedType, bool hasErrors = false) 8392public BoundListPatternIndexPlaceholder? ArgumentPlaceholder { get; } 8397public BoundListPattern Update(ImmutableArray<BoundPattern> subpatterns, bool hasSlice, BoundExpression? lengthAccess, BoundExpression? indexerAccess, BoundListPatternReceiverPlaceholder? receiverPlaceholder, BoundListPatternIndexPlaceholder? argumentPlaceholder, Symbol? variable, BoundExpression? variableAccess, TypeSymbol inputType, TypeSymbol narrowedType) 9109return VisitListPatternIndexPlaceholder((BoundListPatternIndexPlaceholder)node, arg); 9576public virtual R VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node, A arg) => this.DefaultVisit(node, arg); 9817public virtual BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) => this.DefaultVisit(node); 10082public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) => null; 11186public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) 12050BoundListPatternIndexPlaceholder argumentPlaceholder = (BoundListPatternIndexPlaceholder)this.Visit(node.ArgumentPlaceholder); 12570BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder; 12882public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) 12889BoundListPatternIndexPlaceholder updatedNode = node.Update(infoAndType.Type!); 14209BoundListPatternIndexPlaceholder argumentPlaceholder = (BoundListPatternIndexPlaceholder)this.Visit(node.ArgumentPlaceholder); 15272BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder; 15593public override TreeDumperNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node, object? arg) => new TreeDumperNode("listPatternIndexPlaceholder", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (1)
463public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)
Lowering\LocalRewriter\LocalRewriter.PlaceholderReplacer.cs (1)
40public override BoundNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)