Mercurial > pub > Impl
comparison Lib/IMPL/Class/PropertyInfo.pm @ 228:431db7034a88
Для синхронизации
author | andrei <andrei@nap21.upri> |
---|---|
date | Thu, 13 Sep 2012 17:55:01 +0400 |
parents | a8db61d0ed33 |
children | 6d8092d8ce1b |
comparison
equal
deleted
inserted
replaced
227:70ad6bc20908 | 228:431db7034a88 |
---|---|
1 package IMPL::Class::PropertyInfo; | 1 package IMPL::Class::PropertyInfo; |
2 use strict; | 2 use strict; |
3 use IMPL::_core::version; | 3 use IMPL::_core::version; |
4 | 4 |
5 use IMPL::declare { | 5 use parent qw(IMPL::Class::MemberInfo); |
6 base =>{ | 6 |
7 'IMPL::Class::MemberInfo' => '@_' | 7 our %CTOR = ( 'IMPL::Class::MemberInfo' => '@_' ); |
8 } | |
9 }; | |
10 | 8 |
11 __PACKAGE__->mk_accessors(qw(Type Mutators canGet canSet ownerSet)); | 9 __PACKAGE__->mk_accessors(qw(Type Mutators canGet canSet ownerSet)); |
12 | 10 |
13 my %LoadedModules; | 11 my %LoadedModules; |
14 | 12 |