No base.pm
[gitmo/Mouse.git] / lib / Mouse.pm
index c07b200..e3378a6 100644 (file)
@@ -4,10 +4,10 @@ use 5.006_002;
 use strict;
 use warnings;
 
-use base 'Exporter';
-
 our $VERSION = '0.33_01';
 
+use Exporter;
+
 use Carp 'confess';
 use Scalar::Util 'blessed';
 
@@ -20,6 +20,8 @@ use Mouse::Meta::Attribute;
 use Mouse::Object;
 use Mouse::Util::TypeConstraints ();
 
+our @ISA = qw(Exporter);
+
 our @EXPORT = qw(
     extends with
     has