2 instantiations of BoundListPatternIndexPlaceholder
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Patterns.cs (1)
396argumentPlaceholder = new BoundListPatternIndexPlaceholder(node, systemIndexType) { WasCompilerGenerated = true };
Generated\BoundNodes.xml.Generated.cs (1)
820var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.HasErrors);
27 references to BoundListPatternIndexPlaceholder
Microsoft.CodeAnalysis.CSharp (27)
Binder\Binder_Patterns.cs (2)
314BoundListPatternIndexPlaceholder? argumentPlaceholder; 367out BoundExpression indexerAccess, out BoundExpression lengthAccess, out BoundListPatternReceiverPlaceholder? receiverPlaceholder, out BoundListPatternIndexPlaceholder argumentPlaceholder)
Generated\BoundNodes.xml.Generated.cs (22)
816public BoundListPatternIndexPlaceholder Update(TypeSymbol type) 820var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.HasErrors); 5556public BoundDagIndexerEvaluation(SyntaxNode syntax, TypeSymbol indexerType, BoundDagTemp lengthTemp, int index, BoundExpression indexerAccess, BoundListPatternReceiverPlaceholder receiverPlaceholder, BoundListPatternIndexPlaceholder argumentPlaceholder, BoundDagTemp input, bool hasErrors = false) 5584public BoundListPatternIndexPlaceholder ArgumentPlaceholder { get; } 5589public BoundDagIndexerEvaluation Update(TypeSymbol indexerType, BoundDagTemp lengthTemp, int index, BoundExpression indexerAccess, BoundListPatternReceiverPlaceholder receiverPlaceholder, BoundListPatternIndexPlaceholder argumentPlaceholder, BoundDagTemp input) 8219public 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) 8244public BoundListPatternIndexPlaceholder? ArgumentPlaceholder { get; } 8249public BoundListPattern Update(ImmutableArray<BoundPattern> subpatterns, bool hasSlice, BoundExpression? lengthAccess, BoundExpression? indexerAccess, BoundListPatternReceiverPlaceholder? receiverPlaceholder, BoundListPatternIndexPlaceholder? argumentPlaceholder, Symbol? variable, BoundExpression? variableAccess, TypeSymbol inputType, TypeSymbol narrowedType) 8928return VisitListPatternIndexPlaceholder((BoundListPatternIndexPlaceholder)node, arg); 9385public virtual R VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node, A arg) => this.DefaultVisit(node, arg); 9621public virtual BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) => this.DefaultVisit(node); 9877public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) => null; 10945public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) 11802BoundListPatternIndexPlaceholder argumentPlaceholder = (BoundListPatternIndexPlaceholder)this.Visit(node.ArgumentPlaceholder); 12300BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder; 12601public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) 12608BoundListPatternIndexPlaceholder updatedNode = node.Update(infoAndType.Type!); 13916BoundListPatternIndexPlaceholder argumentPlaceholder = (BoundListPatternIndexPlaceholder)this.Visit(node.ArgumentPlaceholder); 14966BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder; 15269public override TreeDumperNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node, object? arg) => new TreeDumperNode("listPatternIndexPlaceholder", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter.cs (1)
1250public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)
Lowering\LocalRewriter\LocalRewriter.PlaceholderReplacer.cs (1)
40public override BoundNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (1)
437public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)