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