5 overrides of IsUnionMatching
Microsoft.CodeAnalysis.CSharp (5)
Generated\BoundNodes.xml.Generated.cs (5)
8183
public override bool
IsUnionMatching
{ get; }
8298
public override bool
IsUnionMatching
{ get; }
8486
public override bool
IsUnionMatching
{ get; }
8632
public override bool
IsUnionMatching
{ get; }
8746
public override bool
IsUnionMatching
{ get; }
7 references to IsUnionMatching
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Patterns.cs (1)
2616
if (pat is {
IsUnionMatching
: true })
Binder\DecisionDagBuilder.cs (1)
364
Debug.Assert(!pattern.
IsUnionMatching
);
Binder\DecisionDagBuilder_CheckOrReachability.cs (1)
798
Debug.Assert(node is not BoundPattern {
IsUnionMatching
: true });
Binder\UnionMatchingRewriter.cs (1)
198
Debug.Assert(!node.
IsUnionMatching
);
BoundTree\BoundNegatedPattern.cs (1)
17
Debug.Assert(!
IsUnionMatching
);
BoundTree\BoundPattern.cs (2)
24
Debug.Assert(!negatedPattern.
IsUnionMatching
);
35
Debug.Assert(!
IsUnionMatching
|| InputType is { IsSubjectForUnionMatching: true });