8 references to BoundBinaryPattern
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Patterns.cs (2)
2519
return new
BoundBinaryPattern
(node, disjunction: true, preboundLeft, right, inputType: inputType, narrowedType: narrowedType, hasErrors);
2528
var result = new
BoundBinaryPattern
(node, disjunction: isDisjunction, preboundLeft, right, inputType: inputType, narrowedType: right.NarrowedType, hasErrors);
Binder\DecisionDagBuilder_CheckOrReachability.cs (3)
488
var wrappedPattern = new
BoundBinaryPattern
(newPattern.Syntax, disjunction: false, current.Left, newPattern, current.InputType, newPattern.NarrowedType);
743
stack.Push(new
BoundBinaryPattern
(operationSyntax, disjunction, left, right, left.InputType, narrowedType));
1040
var result = new
BoundBinaryPattern
(pattern.Syntax, disjunction: false, left: typePattern, right: pattern, inputType, pattern.NarrowedType);
Binder\UnionMatchingRewriter.cs (2)
87
return new
BoundBinaryPattern
(
415
return new
BoundBinaryPattern
(node, disjunction: false, left, right, inputType: left.InputType, narrowedType: right.NarrowedType) { WasCompilerGenerated = makeCompilerGenerated };
Generated\BoundNodes.xml.Generated.cs (1)
8680
var result = new
BoundBinaryPattern
(this.Syntax, disjunction, left, right, inputType, narrowedType, this.HasErrors);