5 overrides of IsUnionMatching
Microsoft.CodeAnalysis.CSharp (5)
Generated\BoundNodes.xml.Generated.cs (5)
8163
public override bool
IsUnionMatching
{ get; }
8278
public override bool
IsUnionMatching
{ get; }
8466
public override bool
IsUnionMatching
{ get; }
8612
public override bool
IsUnionMatching
{ get; }
8726
public override bool
IsUnionMatching
{ get; }
7 references to IsUnionMatching
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Patterns.cs (1)
2746
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 });