Mercurial > pub > Impl
comparison _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 |
comparison
equal
deleted
inserted
replaced
354:9330835535b9 | 355:8dfb9df07d02 |
---|---|
10 }; | 10 }; |
11 | 11 |
12 BEGIN { | 12 BEGIN { |
13 public property name => PROP_ALL; | 13 public property name => PROP_ALL; |
14 public property age => PROP_ALL; | 14 public property age => PROP_ALL; |
15 public property address => PROP_ALL|PROP_LIST, {type => 'Address'}; | 15 public property address => { get => 1, set => 1, isList => 1, type => 'Address'}; |
16 } | 16 } |
17 | 17 |
18 package Address; | 18 package Address; |
19 use IMPL::lang qw(:declare); | 19 use IMPL::lang qw(:declare); |
20 use IMPL::declare { | 20 use IMPL::declare { |