5 references to RightRefKind
Microsoft.CodeAnalysis.CSharp (5)
Binder\Semantics\Operators\BinaryOperatorOverloadResolution.cs (4)
1289
if (op1.
RightRefKind
== RefKind.None && op2.
RightRefKind
== RefKind.In)
1300
else if (op2.
RightRefKind
== RefKind.None && op1.
RightRefKind
== RefKind.In)
Binder\Semantics\Operators\BinaryOperatorSignature.cs (1)
56
return $"kind: {this.Kind} leftType: {this.LeftType} leftRefKind: {this.LeftRefKind} rightType: {this.RightType} rightRefKind: {this.
RightRefKind
} return: {this.ReturnType}";