comparison Lib/IMPL/Class/Property/Base.pm @ 63:76b878ad6596

Added serialization support for the IMPL::Object::List More intelligent Exception message Fixed encoding support in the actions Improoved tests Minor fixes
author wizard
date Mon, 15 Mar 2010 02:38:09 +0300
parents b0c068da93ac
children f017c0d7527c
comparison
equal deleted inserted replaced
62:c64bd1bf727d 63:76b878ad6596
159 my ($strParams) = \@_; 159 my ($strParams) = \@_;
160 my \$accessor; 160 my \$accessor;
161 \$accessor = sub { 161 \$accessor = sub {
162 my \$this = shift; 162 my \$this = shift;
163 $codeAccessCheck 163 $codeAccessCheck
164 $codeValidator
165 if (\@_) { 164 if (\@_) {
166 $codeOwnerCheck 165 $codeOwnerCheck
166 $codeValidator
167 $codeSet 167 $codeSet
168 } else { 168 } else {
169 $codeGet 169 $codeGet
170 } 170 }
171 } 171 }