6 references to BoundBinaryPattern
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Patterns.cs (2)
1807
return new
BoundBinaryPattern
(node, disjunction: isDisjunction, preboundLeft, right, inputType: inputType, narrowedType: narrowedType, hasErrors);
1871
return new
BoundBinaryPattern
(node, disjunction: isDisjunction, preboundLeft, right, inputType: inputType, narrowedType: right.NarrowedType, hasErrors);
Binder\DecisionDagBuilder_CheckOrReachability.cs (3)
480
var wrappedPattern = new
BoundBinaryPattern
(newPattern.Syntax, disjunction: false, current.Left, newPattern, current.InputType, newPattern.NarrowedType);
735
stack.Push(new
BoundBinaryPattern
(operationSyntax, disjunction, left, right, left.InputType, narrowedType));
1031
var result = new
BoundBinaryPattern
(pattern.Syntax, disjunction: false, left: typePattern, right: pattern, inputType, pattern.NarrowedType);
Generated\BoundNodes.xml.Generated.cs (1)
8490
var result = new
BoundBinaryPattern
(this.Syntax, disjunction, left, right, inputType, narrowedType, this.HasErrors);