2 instantiations of BoundListPatternIndexPlaceholder
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Patterns.cs (1)
384argumentPlaceholder = new BoundListPatternIndexPlaceholder(node, systemIndexType) { WasCompilerGenerated = true };
Generated\BoundNodes.xml.Generated.cs (1)
822var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.HasErrors);
27 references to BoundListPatternIndexPlaceholder
Microsoft.CodeAnalysis.CSharp (27)
Binder\Binder_Patterns.cs (2)
302BoundListPatternIndexPlaceholder? argumentPlaceholder; 355out BoundExpression indexerAccess, out BoundExpression lengthAccess, out BoundListPatternReceiverPlaceholder? receiverPlaceholder, out BoundListPatternIndexPlaceholder argumentPlaceholder)
Generated\BoundNodes.xml.Generated.cs (22)
818public BoundListPatternIndexPlaceholder Update(TypeSymbol type) 822var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.HasErrors); 5517public BoundDagIndexerEvaluation(SyntaxNode syntax, TypeSymbol indexerType, BoundDagTemp lengthTemp, int index, BoundExpression indexerAccess, BoundListPatternReceiverPlaceholder receiverPlaceholder, BoundListPatternIndexPlaceholder argumentPlaceholder, BoundDagTemp input, bool hasErrors = false) 5545public BoundListPatternIndexPlaceholder ArgumentPlaceholder { get; } 5550public BoundDagIndexerEvaluation Update(TypeSymbol indexerType, BoundDagTemp lengthTemp, int index, BoundExpression indexerAccess, BoundListPatternReceiverPlaceholder receiverPlaceholder, BoundListPatternIndexPlaceholder argumentPlaceholder, BoundDagTemp input) 8172public 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) 8197public BoundListPatternIndexPlaceholder? ArgumentPlaceholder { get; } 8202public BoundListPattern Update(ImmutableArray<BoundPattern> subpatterns, bool hasSlice, BoundExpression? lengthAccess, BoundExpression? indexerAccess, BoundListPatternReceiverPlaceholder? receiverPlaceholder, BoundListPatternIndexPlaceholder? argumentPlaceholder, Symbol? variable, BoundExpression? variableAccess, TypeSymbol inputType, TypeSymbol narrowedType) 8881return VisitListPatternIndexPlaceholder((BoundListPatternIndexPlaceholder)node, arg); 9338public virtual R VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node, A arg) => this.DefaultVisit(node, arg); 9574public virtual BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) => this.DefaultVisit(node); 9830public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) => null; 10897public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) 11751BoundListPatternIndexPlaceholder argumentPlaceholder = (BoundListPatternIndexPlaceholder)this.Visit(node.ArgumentPlaceholder); 12249BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder; 12550public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node) 12557BoundListPatternIndexPlaceholder updatedNode = node.Update(infoAndType.Type!); 13874BoundListPatternIndexPlaceholder argumentPlaceholder = (BoundListPatternIndexPlaceholder)this.Visit(node.ArgumentPlaceholder); 14924BoundListPatternIndexPlaceholder? argumentPlaceholder = node.ArgumentPlaceholder; 15237public override TreeDumperNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node, object? arg) => new TreeDumperNode("listPatternIndexPlaceholder", null, new TreeDumperNode[]
Lowering\LocalRewriter\LocalRewriter.cs (1)
1239public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)
Lowering\LocalRewriter\LocalRewriter.PlaceholderReplacer.cs (1)
40public override BoundNode VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (1)
398public override BoundNode? VisitListPatternIndexPlaceholder(BoundListPatternIndexPlaceholder node)