Add type constraint
[gitmo/Mouse.git] / lib / Mouse /
2008-12-09 Shawn M Moore Generated constructor cleanup
2008-12-09 Shawn M Moore For class constraints, it's good enough to be a subclas...
2008-12-09 Shawn M Moore More tweaks
2008-12-09 Shawn M Moore Anchor this same regex in Mouse::Meta::Role
2008-12-09 Shawn M Moore Tweaks to metaclass
2008-12-09 Shawn M Moore Anchor this exclusion regex so "has_list" etc will...
2008-12-09 Shawn M Moore Comments, style
2008-12-09 Shawn M Moore Remove pointless shebang in each module
2008-12-08 大沢 和宏 oops, add testcase ( subtype 'Foo' => as 'Bar'; AND...
2008-12-08 大沢 和宏 pre load class in class_type
2008-12-08 大沢 和宏 implement to subtype's as is moose way
2008-12-07 Tokuhiro Matsuno improvement the compatibility with Moose.
2008-12-07 Tokuhiro Matsuno call by full path
2008-12-07 Tokuhiro Matsuno use Scalar::Util directly
2008-12-06 Tokuhiro Matsuno bug fixed when perl 5.8
2008-12-06 Tokuhiro Matsuno - depend to Scalar::Util when perl5.6.x
2008-12-06 Tokuhiro Matsuno revert XS related things. this is no advantage orz
2008-12-06 Tokuhiro Matsuno always inject method to DESTROY
2008-12-06 Tokuhiro Matsuno inject empty DESTRUCT method for performance improvement.
2008-12-05 大沢 和宏 Encapsulation
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-05 大沢 和宏 micro optimized
2008-12-05 大沢 和宏 support of isa or ( isa => ' Str | Undef ')
2008-12-05 大沢 和宏 oops, revert of revision 6879
2008-12-05 大沢 和宏 support of isa or ( isa => ' Str | Undef ')
2008-12-05 Shawn M Moore Fix for default in a constructor reported and tested...
2008-12-05 大沢 和宏 more optimized of TypeRegistry
2008-12-05 大沢 和宏 optimized
2008-12-04 Tokuhiro Matsuno this argument is not needed
2008-12-04 Tokuhiro Matsuno micro optimization
2008-12-04 Ricardo SIGNES should accept subclasses
2008-12-04 Tokuhiro Matsuno shortcut the flow for 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-04 大沢 和宏 add with qw( Role1 Role2 ) support
2008-12-04 Tokuhiro Matsuno added Mouse::Meta::Class->create(_anon_class)?
2008-12-04 Tokuhiro Matsuno micro optimization
2008-12-04 Tokuhiro Matsuno we want to use older Exporter
2008-12-03 大沢 和宏 added MouseX::Types, MouseX::Types::Mouse
2008-12-03 大沢 和宏 remove trash
2008-12-03 Daisuke Maki don't attempt to require Scalar::Util if we're going...
2008-12-03 Daisuke Maki put a hack around in there
2008-12-03 Daisuke Maki change location
2008-12-03 Daisuke Maki oops, copied the wrong sub
2008-12-03 Daisuke Maki attempt to require MRO::Compat. If that fails, use...
2008-12-03 Daisuke Maki 024 fails, but successfully loads and uses the XS versi...
2008-12-03 大沢 和宏 more more moose way to type constraints
2008-12-03 Tokuhiro Matsuno overload::StrVal is needed
2008-12-03 大沢 和宏 added role_type on Mouse::TypeRegistry
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 Tokuhiro Matsuno generate DESTROY method for performance improvement
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 大沢 和宏 added to class_type
2008-12-03 Tokuhiro Matsuno - inject object constructor when call meta->make_immutable.
2008-12-02 大沢 和宏 fixed bug, problem of coercer feature is moose compat
2008-12-02 大沢 和宏 oops
2008-12-02 大沢 和宏 added to coerce feature
2008-12-02 Tokuhiro Matsuno test related things is moved to t::Exception
2008-12-02 Tokuhiro Matsuno don't require Test::Exception on production environment =)
2008-12-02 Tokuhiro Matsuno support alias option on 'with'
2008-12-02 Tokuhiro Matsuno Mouse::Role supports 'with'
2008-12-02 Tokuhiro Matsuno - added Moose::Util::apply_all_roles
2008-12-02 Tokuhiro Matsuno support requires on Mouse::Role.
2008-11-29 Shawn M Moore Implement and export dies_ok
2008-11-29 Shawn M Moore More fixes for requiring Test::Exception 0.27
2008-11-28 Shawn M Moore Mouse::Util provides throws_ok and lives_ok unless...
2008-11-02 Shawn M Moore Factoring
2008-11-02 Shawn M Moore Small fixes
2008-11-02 Shawn M Moore If we have nothing left to do for the accessor, we...
2008-11-02 Shawn M Moore Inline the key in predicate and clearer too
2008-11-02 Shawn M Moore Various optimizations to regular accessors
2008-11-02 Shawn M Moore inlined_name which quotes
2008-11-02 Shawn M Moore Throw an error if a method eval fails
2008-11-02 Shawn M Moore Localize $_ only if we're checking a type constraint
2008-09-29 Shawn M Moore use Carp so Carp::croak is defined (fixes some test...
2008-09-28 Shawn M Moore Don't construct a Test::Builder at BEGIN time, only...
2008-09-28 Shawn M Moore Run all of Mouse::Util at BEGIN time
2008-09-28 Shawn M Moore Notify us of what versions of everything we have from...
2008-09-28 Shawn M Moore Doc that we have implementations for throws_ok and...
2008-09-28 Shawn M Moore Fixes for $Test::Builder::Tester, we want to invoke...
2008-09-28 Shawn M Moore Test::Exception!
2008-09-28 Shawn M Moore Add throws_ok to Mouse::Util
2008-09-28 Shawn M Moore We don't need to do both eval and Module::Name -> Modul...
2008-09-28 Shawn M Moore Simplification of blessed, we don't need to lift the...
2008-09-28 Shawn M Moore one day a stray empty line will kill me
2008-09-28 Shawn M Moore doc
2008-09-28 Shawn M Moore Alter the weaken support a bit
2008-09-28 Shawn M Moore Remove dep on CMM by just delay-loading
2008-09-28 Shawn M Moore weaken for Mouse::Util which will load up Scalar::Util
2008-09-28 Shawn M Moore openhandle
2008-09-28 Shawn M Moore reftype (which is used by openhandle but not Mouse...
next