1 write to Signature
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Operators\UnaryOperatorAnalysisResult.cs (1)
20this.Signature = signature;
11 references to Signature
Microsoft.CodeAnalysis.CSharp (11)
Binder\Binder_Operators.cs (4)
1471if (possiblyBest is { HasValue: true, Signature: { Method: { } bestMethod } }) 2330var signature = best.Signature; 2358var operandConversion = CreateConversion(node, operandPlaceholder, best.Conversion, isCast: false, conversionGroupOpt: null, best.Signature.OperandType, diagnostics); 2786var signature = best.Signature;
Binder\Binder_Statements.cs (2)
2713UnaryOperatorSignature signature = best.Signature; 2721destination: best.Signature.OperandType,
Binder\Binder_TupleOperators.cs (2)
165conversionForBool = CreateConversion(node, conversionForBoolPlaceholder, best.Conversion, isCast: false, conversionGroupOpt: null, best.Signature.OperandType, diagnostics); 166boolOperator = best.Signature;
Binder\Semantics\Operators\UnaryOperatorAnalysisResult.cs (2)
34MethodSymbol IMemberResolutionResultWithPriority<MethodSymbol>.MemberWithPriority => Signature.Method; 48return new UnaryOperatorAnalysisResult(OperatorAnalysisResultKind.Worse, this.Signature, this.Conversion);
Binder\Semantics\Operators\UnaryOperatorOverloadResolutionResult.cs (1)
87sb.AppendLine("Overload resolution succeeded and chose " + this.Best.Signature.ToString());