1 write to Subpatterns
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8180
this.
Subpatterns
= subpatterns;
11 references to Subpatterns
Microsoft.CodeAnalysis.CSharp (11)
Binder\DecisionDagBuilder_ListPatterns.cs (2)
18
list.
Subpatterns
.Count(p => p.Kind == BoundKind.SlicePattern) == (list.HasSlice ? 1 : 0) &&
22
var subpatterns = list.
Subpatterns
;
FlowAnalysis\DefiniteAssignment.cs (1)
2064
foreach (BoundPattern p in pat.
Subpatterns
)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
353
VisitList(node.
Subpatterns
);
FlowAnalysis\NullableWalker_Patterns.cs (1)
89
VisitAndUnsplitAll(node.
Subpatterns
);
Generated\BoundNodes.xml.Generated.cs (5)
8204
if (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))
10703
this.VisitList(node.
Subpatterns
);
12086
ImmutableArray<BoundPattern> subpatterns = this.VisitList(node.
Subpatterns
);
14753
ImmutableArray<BoundPattern> subpatterns = this.VisitList(node.
Subpatterns
);
16950
new TreeDumperNode("subpatterns", null, from x in node.
Subpatterns
select Visit(x, null)),
Operations\CSharpOperationFactory.cs (1)
2623
patterns: boundNode.
Subpatterns
.SelectAsArray((p, fac) => (IPatternOperation)fac.Create(p), this),