Clean up various bits of code that broke when dzil processed them.
Dave Rolsky [Tue, 28 Dec 2010 16:20:08 +0000 (11:20 -0500)]
lib/Class/MOP/Module.pm
lib/Class/MOP/Package.pm
lib/Moose/Error/Confess.pm
lib/Moose/Error/Croak.pm
lib/Moose/Error/Default.pm

index 4d66366..4142dfc 100644 (file)
@@ -16,9 +16,11 @@ sub _new {
 
     my $params = @_ == 1 ? $_[0] : {@_};
     return bless {
+        # Need to quote package to avoid a problem with PPI mis-parsing this
+        # as a package statement.
 
         # from Class::MOP::Package
-        package   => $params->{package},
+        'package' => $params->{package},
         namespace => \undef,
 
         # attributes
index a327928..f24f9d2 100644 (file)
@@ -65,7 +65,9 @@ sub _new {
     my $params = @_ == 1 ? $_[0] : {@_};
 
     return bless {
-        package   => $params->{package},
+        # Need to quote package to avoid a problem with PPI mis-parsing this
+        # as a package statement.
+        'package' => $params->{package},
 
         # NOTE:
         # because of issues with the Perl API
index 6b7c952..eaf6120 100644 (file)
@@ -10,7 +10,7 @@ sub new {
     $self->create_error_confess(@args);
 }
 
-__PACKAGE__
+1;
 
 # ABSTRACT: Prefer C<confess>
 
index 3d30ffa..0c8b04c 100644 (file)
@@ -10,7 +10,7 @@ sub new {
     $self->create_error_croak(@args);
 }
 
-__PACKAGE__
+1;
 
 # ABSTRACT: Prefer C<croak>
 
index c07c626..47c0024 100644 (file)
@@ -46,7 +46,7 @@ sub _create_error_carpmess {
     }
 }
 
-__PACKAGE__
+1;
 
 # ABSTRACT: L<Carp> based error generation for Moose.