Base:
property
IsUnionMatching
Microsoft.CodeAnalysis.CSharp.BoundPattern.IsUnionMatching
1 write to IsUnionMatching
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8174this.IsUnionMatching = isUnionMatching;
7 references to IsUnionMatching
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Operators.cs (1)
4888return MakeIsPatternExpression(node, operand, boundConstantPattern, boundConstantPattern.IsUnionMatching, resultType, operandHasErrors, diagnostics);
Binder\UnionMatchingRewriter.cs (1)
77if (node.IsUnionMatching)
BoundTree\BoundConstantPattern.cs (1)
14if (IsUnionMatching)
Generated\BoundNodes.xml.Generated.cs (4)
8190if (value != this.Value || constantValue != this.ConstantValue || isUnionMatching != this.IsUnionMatching || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything)) 12522return node.Update(value, node.ConstantValue, node.IsUnionMatching, inputType, narrowedType); 15210return node.Update(value, node.ConstantValue, node.IsUnionMatching, inputType, narrowedType); 17454new TreeDumperNode("isUnionMatching", node.IsUnionMatching, null),