Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (8)
606return Convert(node, type, isChecked);
612return Convert(node, type, isChecked);
631return Convert(expr, newType, true);
633return Convert(expr, _int32Type, false);
723return node.ExplicitCastInCode ? Convert(operand, node.Type, false) : operand;
747return (TypeSymbol.Equals(oldType, newType, TypeCompareKind.ConsiderEverything2) && !isExplicit) ? operand : Convert(operand, newType, isChecked);
783return Convert(Visit(unquoted), delegateType, false);
1121receiver = this.Convert(receiver, getMethod.ReceiverType, isChecked: false);