Mercurial > pub > Impl
diff Lib/IMPL/Class/Property/Base.pm @ 134:44977efed303
Significant performance optimizations
Fixed recursion problems due converting objects to JSON
Added cache support for the templates
Added discovery feature for the web methods
author | wizard |
---|---|
date | Mon, 21 Jun 2010 02:39:53 +0400 |
parents | a07a66fd8d5c |
children | d1676be8afcc |
line wrap: on
line diff
--- a/Lib/IMPL/Class/Property/Base.pm Fri Jun 18 16:27:28 2010 +0400 +++ b/Lib/IMPL/Class/Property/Base.pm Mon Jun 21 02:39:53 2010 +0400 @@ -143,7 +143,7 @@ ref $mutators ? ('c' , $mutators->{get} ? 1 : 0, $mutators->{set} ? 1 : 0) : - (($mutators & prop_list) ? 'l' : 's' , ($mutators & prop_get) ? 1 : 0, ($mutators & prop_set) ? ((($mutators & owner_set) == owner_set) ? 2 : 1 ) : 0 ) + ('s',$mutators) ); }