Also see Moose::Manual::Delta for more details of, and workarounds
for, noteworthy changes.
+ [BUG FIXES]
+
+ * mro::get_linear_isa is called as a function rather than a method
+
1.10 Sun, Aug 22, 2010
[API CHANGES]
# no metaclass, no 'meta' method
# now we check whether our ancestors have metaclass, and if so borrow that
- my ( undef, @isa ) = @{ $class->mro::get_linear_isa };
+ my ( undef, @isa ) = @{ mro::get_linear_isa($class) };
foreach my $ancestor ( @isa ) {
my $ancestor_meta = Class::MOP::get_metaclass_by_name($ancestor) || next;