[Xaml[C]] check for compatible types on op_implicit (#715)
authorStephane Delcroix <stephane@delcroix.org>
Thu, 2 Feb 2017 14:19:03 +0000 (15:19 +0100)
committerKangho Hur <kangho.hur@samsung.com>
Fri, 24 Mar 2017 04:18:41 +0000 (13:18 +0900)
* [Xaml[C]] check for compatible types on op_implicit

* fix merge issue

Xamarin.Forms.Build.Tasks/TypeReferenceExtensions.cs
Xamarin.Forms.Xaml.UnitTests/Issues/Bz45891.xaml [new file with mode: 0644]
Xamarin.Forms.Xaml.UnitTests/Issues/Bz45891.xaml.cs [new file with mode: 0644]
Xamarin.Forms.Xaml.UnitTests/XamlC/TypeReferenceExtensionsTests.cs
Xamarin.Forms.Xaml/TypeConversionExtensions.cs

index 3b69bfd..f862de3 100644 (file)
@@ -157,7 +157,7 @@ namespace Xamarin.Forms.Build.Tasks
                        var typeDef = typeRef.Resolve();
                        if (TypeRefComparer.Default.Equals(typeDef, baseClass.Resolve()))
                                return true;
-                       if (typeDef.Interfaces.Any(ir => TypeRefComparer.Default.Equals(ir.InterfaceType, baseClass)))
+                       if (typeDef.Interfaces.Any(ir => TypeRefComparer.Default.Equals(ir.InterfaceType.ResolveGenericParameters(typeRef), baseClass)))
                                return true;
                        if (typeDef.BaseType == null)
                                return false;
@@ -257,10 +257,8 @@ namespace Xamarin.Forms.Build.Tasks
                                        var returnType = castDef.ReturnType;
                                        if (returnType.IsGenericParameter)
                                                returnType = ((GenericInstanceType)opDeclTypeRef).GenericArguments [((GenericParameter)returnType).Position];
-                                       if (returnType.FullName == toType.FullName &&
-                                           cast.Parameters [0].ParameterType.Name == fromType.Name) {
+                                       if (returnType.InheritsFromOrImplements(toType))
                                                return castDef;
-                                       }
                                }
                        }
                        return null;
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz45891.xaml b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz45891.xaml
new file mode 100644 (file)
index 0000000..7a1adf6
--- /dev/null
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
+       xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
+       xmlns:sys="clr-namespace:System;assembly=mscorlib"
+       xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib"
+       xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
+       x:Class="Xamarin.Forms.Xaml.UnitTests.Bz45891">
+       <local:Bz45891.List>
+               <OnPlatform x:TypeArguments="scg:List(sys:String)">
+                       <OnPlatform.iOS>
+                               <scg:List x:TypeArguments="sys:String">
+                                       <x:String>Foo</x:String>
+                               </scg:List>
+                       </OnPlatform.iOS>
+               </OnPlatform>
+       </local:Bz45891.List>
+</ContentPage>
\ No newline at end of file
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz45891.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz45891.xaml.cs
new file mode 100644 (file)
index 0000000..4284dde
--- /dev/null
@@ -0,0 +1,54 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using NUnit.Framework;
+using Xamarin.Forms;
+using Xamarin.Forms.Core.UnitTests;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+       public partial class Bz45891 : ContentPage
+       {
+               public Bz45891()
+               {
+                       InitializeComponent();
+               }
+
+               public Bz45891(bool useCompiledXaml)
+               {
+                       //this stub will be replaced at compile time
+               }
+
+               public static readonly BindableProperty ListProperty =
+                       BindableProperty.Create("List", typeof(IEnumerable<string>), typeof(Bz45891), default(IEnumerable<string>));
+
+               public IEnumerable<string> List {
+                       get { return (IEnumerable<string>)GetValue(ListProperty); }
+                       set { SetValue(ListProperty, value); }
+               }
+
+               [TestFixture]
+               class Tests
+               {
+                       [SetUp]
+                       public void Setup()
+                       {
+                               Device.PlatformServices = new MockPlatformServices();
+                       }
+
+                       [TearDown]
+                       public void TearDown()
+                       {
+                               Device.PlatformServices = null;
+                       }
+
+                       [TestCase(true)]
+                       [TestCase(false)]
+                       public void LookForInheritanceOnOpImplicit(bool useCompiledXaml)
+                       {
+                               var p = new Bz45891(useCompiledXaml);
+                               Assert.AreEqual("Foo", p.List.First());
+                       }
+               }
+       }
+}
\ No newline at end of file
index 9aa03b9..1064166 100644 (file)
@@ -48,6 +48,7 @@ namespace Xamarin.Forms.Xaml.XamlcUnitTests
                [TestCase(typeof(bool), typeof(BindableObject), ExpectedResult = false)]
                [TestCase(typeof(Dictionary<string, string>), typeof(BindableObject), ExpectedResult = false)]
                [TestCase(typeof(List<string>), typeof(BindableObject), ExpectedResult = false)]
+               [TestCase(typeof(List<string>), typeof(IEnumerable<string>), ExpectedResult = true)]
                [TestCase(typeof(List<Button>), typeof(BindableObject), ExpectedResult = false)]
                [TestCase(typeof(Queue<KeyValuePair<string, string>>), typeof(BindableObject), ExpectedResult = false)]
                [TestCase(typeof(double), typeof(double), ExpectedResult = true)]
index 15a66f5..da8e711 100644 (file)
@@ -176,7 +176,7 @@ namespace Xamarin.Forms.Xaml
                                        if (!mi.IsSpecialName) continue;
                                        if (mi.Name != "op_Implicit") continue;
                                        if (!mi.IsPublic) continue;
-                                       if (mi.ReturnType != toType) continue;
+                                       if (!toType.IsAssignableFrom(mi.ReturnType)) continue;
                                        var parameters = mi.GetParameters();
                                        if (parameters.Length != 1) continue;
                                        if (parameters[0].ParameterType != value.GetType()) continue;
@@ -188,7 +188,7 @@ namespace Xamarin.Forms.Xaml
                                                if (!mi.IsSpecialName) continue;
                                                if (mi.Name != "op_Implicit") continue;
                                                if (!mi.IsPublic) continue;
-                                               if (mi.ReturnType != toType) continue;
+                                               if (!toType.IsAssignableFrom(mi.ReturnType)) continue;
                                                var parameters = mi.GetParameters();
                                                if (parameters.Length != 1) continue;
                                                if (parameters[0].ParameterType != value.GetType()) continue;