13 references to Error
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_Patterns.cs (2)
1656
case BinaryOperatorKind.
Error
:
1714
_ => BinaryOperatorKind.
Error
,
Binder\Semantics\Operators\BinaryOperatorEasyOut.cs (6)
14
private const BinaryOperatorKind ERR = BinaryOperatorKind.
Error
;
260
return BinaryOperatorKind.
Error
;
265
return BinaryOperatorKind.
Error
;
268
var result = BinaryOperatorKind.
Error
;
282
return result == BinaryOperatorKind.
Error
? result : result | kind;
307
if (easyOut == BinaryOperatorKind.
Error
)
Compilation\CSharpCompilation.cs (1)
4319
if (easyOutBinaryKind != BinaryOperatorKind.
Error
)
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (1)
400
Debug.Assert(operatorType != BinaryOperatorKind.
Error
);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (3)
Semantics\OperatorTests.cs (3)
8159
if (result == BinaryOperatorKind.
Error
)
8235
(result = OverloadResolution.BinopEasyOut.OpKind(op, leftType.EnumUnderlyingTypeOrSelf(), rightType)) != BinaryOperatorKind.
Error
&&
8242
(result = OverloadResolution.BinopEasyOut.OpKind(op, leftType, rightType.EnumUnderlyingTypeOrSelf())) != BinaryOperatorKind.
Error
&&