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);
729return node.ExplicitCastInCode ? Convert(operand, node.Type, false) : operand;
753return (TypeSymbol.Equals(oldType, newType, TypeCompareKind.ConsiderEverything2) && !isExplicit) ? operand : Convert(operand, newType, isChecked);
799return Convert(Visit(unquoted), delegateType, false);
1169receiver = this.Convert(receiver, getMethod.ReceiverType, isChecked: false);