Class::MOP::Method::Constructor - Method Meta Object for constructors |
Class::MOP::Method::Constructor - Method Meta Object for constructors
version 2.1605
use Class::MOP::Method::Constructor;
my $constructor = Class::MOP::Method::Constructor->new( metaclass => $metaclass, options => { debug => 1, # this is all for now }, );
# calling the constructor ... $constructor->body->execute($metaclass->name, %params);
This is a subclass of the Class::MOP::Method manpage which generates constructor methods.
new(%options)
>>
This software is copyright (c) 2006 by Infinity Interactive, Inc.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Class::MOP::Method::Constructor - Method Meta Object for constructors |