This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
2 more VMS test tweaks
[perl5.git] / lib / base.pm
index b8d210e..c6d8cca 100644 (file)
@@ -30,7 +30,7 @@ C<require>s them.  Whether to C<require> a base class package is
 determined by the absence of a global $VERSION in the base package.
 If $VERSION is not detected even after loading it, <base> will
 define $VERSION in the base package, setting it to the string
-C<-1, defined by base.pm>.
+C<-1, set by base.pm>.
 
 =head1 HISTORY
 
@@ -44,29 +44,23 @@ L<fields>
 
 package base;
 
-use 5.005_64;
-our $VERSION = "1.01";
+use 5.006_001;
+our $VERSION = "1.02";
 
 sub import {
     my $class = shift;
     my $fields_base;
     my $pkg = caller(0);
 
-    my @attrs;
-    my $isa = \@{"$pkg\::ISA"};
-
     foreach my $base (@_) {
-        if ($base =~ /^[-+]/) { #attribute
-            push @attrs, $base;
-            next;
-        }
        next if $pkg->isa($base);
-       push @$isa, $base;
-       unless (exists ${"$base\::"}{VERSION}) {
+       push @{"$pkg\::ISA"}, $base;
+        my $vglob;
+       unless (${*{"$base\::VERSION"}{SCALAR}}) {
            eval "require $base";
            # Only ignore "Can't locate" errors from our eval require.
            # Other fatal errors (syntax etc) must be reported.
-           die if $@ && $@ !~ /^Can\'t locate .*? at \(eval /;
+           die if $@ && $@ !~ /^Can't locate .*? at \(eval /;
            unless (%{"$base\::"}) {
                require Carp;
                Carp::croak("Base class package \"$base\" is empty.\n",
@@ -74,7 +68,7 @@ sub import {
                            "which defines that package first.)");
            }
            ${"$base\::VERSION"} = "-1, set by base.pm"
-               unless exists ${"$base\::"}{VERSION};
+               unless ${*{"$base\::VERSION"}{SCALAR}};
        }
 
        # A simple test like (defined %{"$base\::FIELDS"}) will
@@ -94,10 +88,6 @@ sub import {
        require fields;
        fields::inherit($pkg, $fields_base);
     }
-    if (@attrs) {
-        require attributes;
-        attributes::->import($pkg, $isa, @attrs);
-    }
 }
 
 1;