1 instantiation of BoundListPattern
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8206var result = new BoundListPattern(this.Syntax, subpatterns, hasSlice, lengthAccess, indexerAccess, receiverPlaceholder, argumentPlaceholder, variable, variableAccess, inputType, narrowedType, this.HasErrors);
24 references to BoundListPattern
Microsoft.CodeAnalysis.CSharp (24)
Binder\Binder_Patterns.cs (2)
81case BoundListPattern: 288private BoundListPattern BindListPattern(
Binder\DecisionDagBuilder.cs (1)
298case BoundListPattern list:
Binder\DecisionDagBuilder_ListPatterns.cs (1)
13private Tests MakeTestsAndBindingsForListPattern(BoundDagTemp input, BoundListPattern list, out BoundDagTemp output, ArrayBuilder<BoundPatternBinding> bindings)
Binder\RefSafetyAnalysis.cs (1)
579public override BoundNode? VisitListPattern(BoundListPattern node)
FlowAnalysis\AbstractFlowPass.cs (3)
929BoundDeclarationPattern or BoundDiscardPattern or BoundListPattern or BoundSlicePattern); 990case BoundListPattern: 1072case BoundListPattern:
FlowAnalysis\DefiniteAssignment.cs (2)
2063var pat = (BoundListPattern)pattern;
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
351public override BoundNode? VisitListPattern(BoundListPattern node)
FlowAnalysis\NullableWalker_Patterns.cs (2)
87public override BoundNode VisitListPattern(BoundListPattern node) 180case BoundListPattern lp:
Generated\BoundNodes.xml.Generated.cs (9)
8202public BoundListPattern Update(ImmutableArray<BoundPattern> subpatterns, bool hasSlice, BoundExpression? lengthAccess, BoundExpression? indexerAccess, BoundListPatternReceiverPlaceholder? receiverPlaceholder, BoundListPatternIndexPlaceholder? argumentPlaceholder, Symbol? variable, BoundExpression? variableAccess, TypeSymbol inputType, TypeSymbol narrowedType) 8206var result = new BoundListPattern(this.Syntax, subpatterns, hasSlice, lengthAccess, indexerAccess, receiverPlaceholder, argumentPlaceholder, variable, variableAccess, inputType, narrowedType, this.HasErrors); 9259return VisitListPattern((BoundListPattern)node, arg); 9517public virtual R VisitListPattern(BoundListPattern node, A arg) => this.DefaultVisit(node, arg); 9753public virtual BoundNode? VisitListPattern(BoundListPattern node) => this.DefaultVisit(node); 10701public override BoundNode? VisitListPattern(BoundListPattern node) 12084public override BoundNode? VisitListPattern(BoundListPattern node) 14748public override BoundNode? VisitListPattern(BoundListPattern node) 16948public override TreeDumperNode VisitListPattern(BoundListPattern node, object? arg) => new TreeDumperNode("listPattern", null, new TreeDumperNode[]
Operations\CSharpOperationFactory.cs (2)
245return CreateBoundListPatternOperation((BoundListPattern)boundNode); 2618private IOperation CreateBoundListPatternOperation(BoundListPattern boundNode)