1 write to Properties
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8349this.Properties = properties;
21 references to Properties
Microsoft.CodeAnalysis.CSharp (21)
Binder\DecisionDagBuilder.cs (2)
987if (!recursive.Properties.IsDefault) 990foreach (var subpattern in recursive.Properties)
Binder\DecisionDagBuilder_CheckOrReachability.cs (3)
997recursivePattern.Properties, recursivePattern.IsExplicitNotNullTest, 1150if (!node.Properties.IsDefaultOrEmpty) 1177foreach (BoundPropertySubpattern subPattern in node.Properties)
Binder\UnionMatchingRewriter.cs (1)
114node.DeclaredType, node.DeconstructMethod, node.Deconstruction, node.Properties, node.IsExplicitNotNullTest, node.Variable, node.VariableAccess,
BoundTree\BoundNode_Source.cs (1)
419if (recursivePattern.Properties is { IsDefault: false } properties)
FlowAnalysis\AbstractFlowPass.cs (1)
952Properties:
FlowAnalysis\DefiniteAssignment.cs (2)
1993if (!pat.Properties.IsDefaultOrEmpty) 1995foreach (BoundPropertySubpattern sub in pat.Properties)
FlowAnalysis\NullableWalker_Patterns.cs (3)
58VisitAndUnsplitAll(node.Properties); 208if (!rp.Properties.IsDefault) 210foreach (BoundPropertySubpattern subpattern in rp.Properties)
FlowAnalysis\VariablesDeclaredWalker.cs (1)
81foreach (var subpattern in recursivePattern.Properties.NullToEmpty())
Generated\BoundNodes.xml.Generated.cs (6)
8368if (declaredType != this.DeclaredType || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(deconstructMethod, this.DeconstructMethod) || deconstruction != this.Deconstruction || properties != this.Properties || isExplicitNotNullTest != this.IsExplicitNotNullTest || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(variable, this.Variable) || variableAccess != this.VariableAccess || isUnionMatching != this.IsUnionMatching || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 11003this.VisitList(node.Properties); 12555ImmutableArray<BoundPropertySubpattern> properties = this.VisitList(node.Properties); 15249ImmutableArray<BoundPropertySubpattern> properties = this.VisitList(node.Properties); 17495new TreeDumperNode("properties", null, node.Properties.IsDefault ? Array.Empty<TreeDumperNode>() : from x in node.Properties select Visit(x, null)),
Operations\CSharpOperationFactory.cs (1)
2625ImmutableArray<IPropertySubpatternOperation> propertySubpatterns = boundRecursivePattern.Properties is { IsDefault: false } properties