1 write to Disjunction
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
8436
this.
Disjunction
= disjunction;
10 references to Disjunction
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_Patterns.cs (1)
1865
if (pat is BoundBinaryPattern {
Disjunction
: true } p)
Binder\DecisionDagBuilder.cs (1)
674
if (bin.
Disjunction
)
BoundTree\BoundTreeRewriter.cs (1)
233
left = binary.Update(binary.
Disjunction
, left, right, VisitType(binary.InputType), VisitType(binary.NarrowedType));
FlowAnalysis\DefiniteAssignment.cs (2)
2090
bool def = definitely && !pat.
Disjunction
;
2101
definitely = definitely && !pat.
Disjunction
;
Generated\BoundNodes.xml.Generated.cs (4)
8450
if (disjunction != this.
Disjunction
|| left != this.Left || right != this.Right || !TypeSymbol.Equals(inputType, this.InputType, TypeCompareKind.ConsiderEverything) || !TypeSymbol.Equals(narrowedType, this.NarrowedType, TypeCompareKind.ConsiderEverything))
12143
return node.Update(node.
Disjunction
, left, right, inputType, narrowedType);
14811
return node.Update(node.
Disjunction
, left, right, inputType, narrowedType);
17018
new TreeDumperNode("disjunction", node.
Disjunction
, null),
Operations\CSharpOperationFactory.cs (1)
2673
boundBinaryPattern.
Disjunction
? BinaryOperatorKind.Or : BinaryOperatorKind.And,