1 write to OperandConversion
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1218
this.
OperandConversion
= operandConversion;
12 references to OperandConversion
Microsoft.CodeAnalysis.CSharp (12)
FlowAnalysis\NullableWalker.cs (2)
11026
if (node.
OperandConversion
is BoundConversion { Conversion: var operandConversion } && operandConversion.IsUserDefined && operandConversion.Method?.ParameterCount == 1)
11056
BoundNode.GetConversion(node.
OperandConversion
, node.OperandPlaceholder),
Generated\BoundNodes.xml.Generated.cs (4)
1242
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))
10983
BoundExpression? operandConversion = node.
OperandConversion
;
12710
BoundExpression? operandConversion = node.
OperandConversion
;
15330
new TreeDumperNode("operandConversion", null, new TreeDumperNode[] { Visit(node.
OperandConversion
, null) }),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (6)
408
Debug.Assert(node.
OperandConversion
is null || (node.Operand.Type!.IsReferenceType && node.MethodOpt.GetIsNewExtensionMember()));
416
ApplyConversionIfNotIdentity(node.
OperandConversion
, node.OperandPlaceholder, VisitExpression(node.Operand)),
443
ApplyConversionIfNotIdentity(node.
OperandConversion
, node.OperandPlaceholder, boundTemp),
451
Debug.Assert(node.
OperandConversion
is null);
794
BoundExpression rewrittenArgument = ApplyConversionIfNotIdentity(node.
OperandConversion
, node.OperandPlaceholder, rewrittenValueToIncrement);
913
binaryOperand = ApplyConversionIfNotIdentity(node.
OperandConversion
, node.OperandPlaceholder, binaryOperand);