1 write to ResultConversion
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1238
this.
ResultConversion
= resultConversion;
6 references to ResultConversion
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (1)
10487
BoundNode.GetConversion(node.
ResultConversion
, node.ResultPlaceholder),
Generated\BoundNodes.xml.Generated.cs (4)
1260
if (operatorKind != this.OperatorKind || operand != this.Operand || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(methodOpt, this.MethodOpt) || !TypeSymbol.Equals(constrainedToTypeOpt, this.ConstrainedToTypeOpt, TypeCompareKind.ConsiderEverything) || operandPlaceholder != this.OperandPlaceholder || operandConversion != this.OperandConversion || resultPlaceholder != this.ResultPlaceholder || resultConversion != this.
ResultConversion
|| resultKind != this.ResultKind || originalUserDefinedOperatorsOpt != this.OriginalUserDefinedOperatorsOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10942
BoundExpression? resultConversion = node.
ResultConversion
;
12536
BoundExpression? resultConversion = node.
ResultConversion
;
15180
new TreeDumperNode("resultConversion", null, new TreeDumperNode[] { Visit(node.
ResultConversion
, null) }),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (1)
589
result = ApplyConversionIfNotIdentity(node.
ResultConversion
, node.ResultPlaceholder, result);