summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-08-16 20:33:44 +0200
committerJason Smith <jason.smith@xamarin.com>2016-08-16 11:33:44 -0700
commit4226f5b386a83dc9eb2f0c06f4920ac1be19e036 (patch)
treea1e0e9ac88967d31d52750e4082d29695079f4a8 /Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs
parent3ca06ea14603abded9c15287865a51a3add4e436 (diff)
downloadxamarin-forms-4226f5b386a83dc9eb2f0c06f4920ac1be19e036.tar.gz
xamarin-forms-4226f5b386a83dc9eb2f0c06f4920ac1be19e036.tar.bz2
xamarin-forms-4226f5b386a83dc9eb2f0c06f4920ac1be19e036.zip
[Xaml] Clone node tree on DT, allow markup to be evaluated multiple times (#295)
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs b/Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs
index 63493030..7361235c 100644
--- a/Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs
+++ b/Xamarin.Forms.Xaml.UnitTests/MarkupExpressionParserTests.cs
@@ -68,7 +68,13 @@ namespace Xamarin.Forms.Xaml.UnitTests
throw new NotImplementedException ();
}
+
public List<string> IgnorablePrefixes { get; set; }
+
+ public INode Clone()
+ {
+ throw new NotImplementedException();
+ }
}
[SetUp]