Mercurial > pub > Impl
view Lib/IMPL/Object/Meta.pm @ 58:a35b60b16a99
Configuration, late activation
author | wizard |
---|---|
date | Fri, 05 Mar 2010 20:14:45 +0300 |
parents | 16ada169ca75 |
children | 76b878ad6596 |
line wrap: on
line source
package IMPL::Object::Meta; use strict; use warnings; use base qw(IMPL::Object); use IMPL::Class::Property; use IMPL::Class::Property::Direct; BEGIN { public _direct property Container => prop_get; } sub meta { my $class = shift; my $caller = caller; my $meta = $class->surrogate(); $meta->{$Container} = $caller; $meta->callCTOR(@_); $caller->set_meta($meta); } 1;