diff _test/test_binding.pl @ 355:8dfb9df07d02

added support for the custom resolvers for the TTView
author sergey
date Thu, 17 Oct 2013 01:04:37 +0400
parents a1e868b0fba9
children
line wrap: on
line diff
--- a/_test/test_binding.pl	Wed Oct 16 17:28:40 2013 +0400
+++ b/_test/test_binding.pl	Thu Oct 17 01:04:37 2013 +0400
@@ -12,7 +12,7 @@
 BEGIN {
 	public property name => PROP_ALL;
 	public property age => PROP_ALL;
-	public property address => PROP_ALL|PROP_LIST, {type => 'Address'};
+	public property address => { get => 1, set => 1, isList => 1, type => 'Address'};
 }
 
 package Address;