2 instantiations of FixResolution
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.NetCore.Analyzers\Runtime\TestForNaNCorrectly.Fixer.cs (2)
71
return new
FixResolution
(binaryExpressionSyntax, systemTypeLeft, nanIsLeftOperand: true, isEqualsOperator);
77
return new
FixResolution
(binaryExpressionSyntax, systemTypeRight, nanIsLeftOperand: false, isEqualsOperator);
2 references to FixResolution
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.NetCore.Analyzers\Runtime\TestForNaNCorrectly.Fixer.cs (2)
39
if (TryGetFixResolution(node, model, cancellationToken) is not
FixResolution
resolution)
58
private
FixResolution
? TryGetFixResolution(SyntaxNode node, SemanticModel model, CancellationToken cancellationToken)