Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (8)
605return Convert(node, type, isChecked);
611return Convert(node, type, isChecked);
630return Convert(expr, newType, true);
632return Convert(expr, _int32Type, false);
722return node.ExplicitCastInCode ? Convert(operand, node.Type, false) : operand;
746return (TypeSymbol.Equals(oldType, newType, TypeCompareKind.ConsiderEverything2) && !isExplicit) ? operand : Convert(operand, newType, isChecked);
782return Convert(Visit(unquoted), delegateType, false);
1120receiver = this.Convert(receiver, getMethod.ReceiverType, isChecked: false);