Base:
property
UnionMatchingMode
Microsoft.CodeAnalysis.CSharp.BoundPattern.UnionMatchingMode
1 write to UnionMatchingMode
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8721
this.
UnionMatchingMode
= unionMatchingMode;
8 references to UnionMatchingMode
Microsoft.CodeAnalysis.CSharp (8)
Binder\UnionMatchingRewriter.cs (2)
186
if (node.
UnionMatchingMode
!= UnionMatchingMode.None)
188
Debug.Assert(node.
UnionMatchingMode
== UnionMatchingMode.UnionValue);
BoundTree\BoundRelationalPattern.cs (2)
14
if (
UnionMatchingMode
!= UnionMatchingMode.None)
16
Debug.Assert((
UnionMatchingMode
& UnionMatchingMode.UnionInstance) == 0);
Generated\BoundNodes.xml.Generated.cs (4)
8738
if (relation != this.Relation || value != this.Value || constantValue != this.ConstantValue || unionMatchingMode != this.
UnionMatchingMode
|| !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
12641
return node.Update(node.Relation, value, node.ConstantValue, node.
UnionMatchingMode
, inputType, narrowedType);
15333
return node.Update(node.Relation, value, node.ConstantValue, node.
UnionMatchingMode
, inputType, narrowedType);
17611
new TreeDumperNode("unionMatchingMode", node.
UnionMatchingMode
, null),