Class::MOP::Method::Constructor – Method Meta Object for constructors
| Use Case | Command | Description |
|---|---|---|
| Create a constructor | Class::MOP::Method::Constructor->new( metaclass => $mc, name => $name, package_name => $pkg ) |
Generates a new constructor meta-object |
| Check if inlined | $metamethod->is_inline |
Returns boolean: true if constructor is inlined |
| Get associated metaclass | $metamethod->associated_metaclass |
Returns the Class::MOP::Class object for the method |
version 2.2200
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 Class::MOP::Method which generates constructor methods.
Class::MOP::Method::Constructor->new(%options)This creates a new constructor object. It accepts a hash reference of options.
$metamethod->is_inlineReturns a boolean indicating whether or not the constructor is inlined.
$metamethod->associated_metaclassThis returns the Class::MOP::Class object for the method.
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.
Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-09 10:23 @2600:1f28:365:80b0:50b3:453e:ff52:20f7
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format