Tidy
[gitmo/Mouse.git] / lib / Mouse / Meta / Method / Constructor.pm
2009-09-25 gfx Tidy
2009-09-24 gfx Refactor the constructor of Attribute
2009-09-22 gfx Fix the timing triggers are invoked
2009-04-15 Shawn M Moore Use $value instead of $_ in the constructor, since...
2009-04-10 Tokuhiro Matsuno class-mop says 'The compute_all_applicable_attributes...
2009-04-06 wu-lee Fixed bug in the immutable constructor. It now redispa...
2009-04-03 wu-lee Fixed a bug in the compiled constructor - it was invoki...
2009-04-03 Tokuhiro Matsuno scope makes slower!mouse's constructer is faster than...
2009-04-03 Tokuhiro Matsuno use compiled_constraints directly. performance enhancement.
2009-04-02 Tokuhiro Matsuno oops. i forgot to change make_immutable code.
2009-04-02 Tokuhiro Matsuno added Mouse::Meta::TypeConstraint and use it. Mouse...
2009-04-02 Tokuhiro Matsuno much faster impl. for constructor/accessor. this is...
2009-04-01 Shawn M Moore Forbid undef passed to new for Moose compat
2009-04-01 Shawn M Moore Remove third argument to trigger
2009-02-05 Shawn M Moore Don't require there to be a BUILDARGS method; fix undef...
2008-12-22 Shawn M Moore Finish renaming Mouse::TypeRegistry to Mouse::Util...
2008-12-09 Shawn M Moore Ignore "used only once" warning
2008-12-09 Shawn M Moore Make the constructor code easier to read
2008-12-09 Shawn M Moore Only inline BUILDARGS if the class has one that isn...
2008-12-09 Shawn M Moore Generated constructor cleanup
2008-12-09 Shawn M Moore More tweaks
2008-12-07 Tokuhiro Matsuno call by full path
2008-12-05 大沢 和宏 optimize for constructor and attribute
2008-12-05 大沢 和宏 set instance to attributes default code
2008-12-05 大沢 和宏 optimaized default values in constructor
2008-12-04 Tokuhiro Matsuno micro optimization
2008-12-04 Tokuhiro Matsuno bug fixed: BUILD method doesn't works
2008-12-04 Tokuhiro Matsuno do not use same variable name twice.
2008-12-03 Shawn M Moore Better variable names
2008-12-03 Shawn M Moore Use fewer assignments when doing a coercion in the...
2008-12-03 Shawn M Moore Use fewer assignments when doing a coercion in the...
2008-12-03 Shawn M Moore Assign the value of the parameter to a lexical so we...
2008-12-03 Shawn M Moore Inline $from
2008-12-03 Shawn M Moore Close over $key so we don't need to do an assignment...
2008-12-03 Tokuhiro Matsuno performance tuning
2008-12-03 Shawn M Moore Make the constructor close over the metaclass, and...
2008-12-03 Tokuhiro Matsuno micro optimization
2008-12-03 Tokuhiro Matsuno - inject object constructor when call meta->make_immutable.