1 write to Subpatterns
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8180this.Subpatterns = subpatterns;
11 references to Subpatterns
Microsoft.CodeAnalysis.CSharp (11)
Binder\DecisionDagBuilder_ListPatterns.cs (2)
18list.Subpatterns.Count(p => p.Kind == BoundKind.SlicePattern) == (list.HasSlice ? 1 : 0) && 22var subpatterns = list.Subpatterns;
FlowAnalysis\DefiniteAssignment.cs (1)
2064foreach (BoundPattern p in pat.Subpatterns)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
353VisitList(node.Subpatterns);
FlowAnalysis\NullableWalker_Patterns.cs (1)
89VisitAndUnsplitAll(node.Subpatterns);
Generated\BoundNodes.xml.Generated.cs (5)
8204if (subpatterns != this.Subpatterns || hasSlice != this.HasSlice || lengthAccess != this.LengthAccess || indexerAccess != this.IndexerAccess || receiverPlaceholder != this.ReceiverPlaceholder || argumentPlaceholder != this.ArgumentPlaceholder || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(variable, this.Variable) || variableAccess != this.VariableAccess || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 10703this.VisitList(node.Subpatterns); 12086ImmutableArray<BoundPattern> subpatterns = this.VisitList(node.Subpatterns); 14753ImmutableArray<BoundPattern> subpatterns = this.VisitList(node.Subpatterns); 16950new TreeDumperNode("subpatterns", null, from x in node.Subpatterns select Visit(x, null)),
Operations\CSharpOperationFactory.cs (1)
2623patterns: boundNode.Subpatterns.SelectAsArray((p, fac) => (IPatternOperation)fac.Create(p), this),