Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (8)
612return Convert(node, type, isChecked);
618return Convert(node, type, isChecked);
637return Convert(expr, newType, true);
639return Convert(expr, _int32Type, false);
730return node.ExplicitCastInCode ? Convert(operand, node.Type, false) : operand;
754return (TypeSymbol.Equals(oldType, newType, TypeCompareKind.ConsiderEverything2) && !isExplicit) ? operand : Convert(operand, newType, isChecked);
800return Convert(Visit(unquoted), delegateType, false);
1170receiver = this.Convert(receiver, getMethod.ReceiverType, isChecked: false);