2 writes to OperandType
Microsoft.CodeAnalysis.CSharp (2)
Binder\Semantics\Operators\UnaryOperatorSignature.cs (2)
26
this.
OperandType
= operandType;
35
this.
OperandType
= operandType;
11 references to OperandType
Microsoft.CodeAnalysis.CSharp (11)
Binder\Binder_Operators.cs (2)
2358
var operandConversion = CreateConversion(node, operandPlaceholder, best.Conversion, isCast: false, conversionGroupOpt: null, best.Signature.
OperandType
, diagnostics);
2788
var resultOperand = CreateConversion(operand.Syntax, operand, best.Conversion, isCast: false, conversionGroupOpt: null, signature.
OperandType
, diagnostics);
Binder\Binder_Statements.cs (1)
2721
destination: best.Signature.
OperandType
,
Binder\Binder_TupleOperators.cs (1)
165
conversionForBool = CreateConversion(node, conversionForBoolPlaceholder, best.Conversion, isCast: false, conversionGroupOpt: null, best.Signature.
OperandType
, diagnostics);
Binder\Semantics\Operators\UnaryOperatorEasyOut.cs (1)
114
Conversion? conversion = Conversions.FastClassifyConversion(operandType, signature.
OperandType
);
Binder\Semantics\Operators\UnaryOperatorOverloadResolution.cs (4)
188
BetterResult better = BetterConversionFromExpression(operand, op1.
OperandType
, op2.
OperandType
, ref useSiteInfo);
201
if (Conversions.HasIdentityConversion(op1.
OperandType
, op2.
OperandType
))
Binder\Semantics\Operators\UnaryOperatorSignature.cs (1)
43
return $"kind: {this.Kind} operandType: {this.
OperandType
} operandRefKind: {this.RefKind} return: {this.ReturnType}";
Compilation\CSharpCompilation.cs (1)
4473
csharpOperandType.SpecialType == signature.
OperandType
.SpecialType)