Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (8)
535return Convert(node, type, isChecked);
541return Convert(node, type, isChecked);
560return Convert(expr, newType, true);
562return Convert(expr, _int32Type, false);
648return node.ExplicitCastInCode ? Convert(operand, node.Type, false) : operand;
672return (TypeSymbol.Equals(oldType, newType, TypeCompareKind.ConsiderEverything2) && !isExplicit) ? operand : Convert(operand, newType, isChecked);
703return Convert(Visit(unquoted), delegateType, false);
1029receiver = this.Convert(receiver, getMethod.ReceiverType, isChecked: false);