Remove old accessors that are commented out
gfx [Sun, 23 Aug 2009 09:44:39 +0000 (18:44 +0900)]
lib/Class/MOP/Attribute.pm
lib/Class/MOP/Class.pm
lib/Class/MOP/Instance.pm
lib/Class/MOP/Method.pm
lib/Class/MOP/Method/Accessor.pm
lib/Class/MOP/Method/Constructor.pm
lib/Class/MOP/Method/Generated.pm
lib/Class/MOP/Method/Inlined.pm
lib/Class/MOP/Package.pm

index 294cdf5..c977b8f 100644 (file)
@@ -155,39 +155,6 @@ sub _set_initial_slot_value {
     $instance->$initializer($value, $callback, $self);
 }
 
-# NOTE:
-# the next bunch of methods will get bootstrapped
-# away in the Class::MOP bootstrapping section
-
-#sub associated_class   { $_[0]->{'associated_class'}   }
-#sub associated_methods { $_[0]->{'associated_methods'} }
-
-#sub has_accessor    { defined($_[0]->{'accessor'}) }
-#sub has_reader      { defined($_[0]->{'reader'}) }
-#sub has_writer      { defined($_[0]->{'writer'}) }
-#sub has_predicate   { defined($_[0]->{'predicate'}) }
-#sub has_clearer     { defined($_[0]->{'clearer'}) }
-#sub has_builder     { defined($_[0]->{'builder'}) }
-#sub has_init_arg    { defined($_[0]->{'init_arg'}) }
-#sub has_default     { defined($_[0]->{'default'}) }
-#sub has_initializer { defined($_[0]->{'initializer'}) }
-#sub has_insertion_order { defined($_[0]->{'insertion_order'}) }
-
-#sub accessor           { $_[0]->{'accessor'}    }
-#sub reader             { $_[0]->{'reader'}      }
-#sub writer             { $_[0]->{'writer'}      }
-#sub predicate          { $_[0]->{'predicate'}   }
-#sub clearer            { $_[0]->{'clearer'}     }
-#sub builder            { $_[0]->{'builder'}     }
-#sub init_arg           { $_[0]->{'init_arg'}    }
-#sub initializer        { $_[0]->{'initializer'} }
-#sub definition_context { $_[0]->{'definition_context'} }
-#sub insertion_order    { $_[0]->{'insertion_order'} }
-#sub _set_insertion_order { $_[0]->{'insertion_order'} = $_[1] }
-
-# end bootstrapped away method section.
-# (all methods below here are kept intact)
-
 sub has_read_method  { $_[0]->has_reader || $_[0]->has_accessor }
 sub has_write_method { $_[0]->has_writer || $_[0]->has_accessor }
 
index a93369c..e1c730c 100644 (file)
@@ -322,8 +322,6 @@ sub create {
     return $meta;
 }
 
-## Attribute readers
-
 # Instance Construction & Cloning
 
 sub new_object {
index 1a7ca1f..56a86e4 100644 (file)
@@ -70,8 +70,6 @@ sub _new {
 
 sub _class_name { $_[0]->{_class_name} ||= $_[0]->associated_metaclass->name }
 
-#sub associated_metaclass { $_[0]{'associated_metaclass'} }
-
 sub create_instance {
     my $self = shift;
     bless {}, $self->_class_name;
index 33f5efb..43aa1c2 100644 (file)
@@ -65,10 +65,6 @@ sub _new {
     } => $class;
 }
 
-## accessors
-
-#sub associated_metaclass { shift->{'associated_metaclass'} }
-
 sub attach_to_class {
     my ( $self, $class ) = @_;
     $self->{associated_metaclass} = $class;
@@ -85,9 +81,6 @@ sub fully_qualified_name {
     $self->package_name . '::' . $self->name;
 }
 
-#sub original_method { (shift)->{'original_method'} }
-
-#sub _set_original_method { $_[0]->{'original_method'} = $_[1] }
 
 # It's possible that this could cause a loop if there is a circular
 # reference in here. That shouldn't ever happen in normal
index 58355a2..6138e0b 100644 (file)
@@ -68,11 +68,6 @@ sub _new {
     } => $class;
 }
 
-## accessors
-
-#sub associated_attribute { (shift)->{'attribute'}     }
-#sub accessor_type        { (shift)->{'accessor_type'} }
-
 
 ## factory
 
index e8313c4..8ecc4b9 100644 (file)
@@ -65,11 +65,6 @@ sub _new {
     }, $class;
 }
 
-## accessors
-
-#sub options              { (shift)->{'options'}              }
-#sub associated_metaclass { (shift)->{'associated_metaclass'} }
-
 ## cached values ...
 
 sub _meta_instance {
index 292d790..5841e0d 100644 (file)
@@ -14,15 +14,10 @@ use base 'Class::MOP::Method';
 
 use constant _PRINT_SOURCE => $ENV{MOP_PRINT_SOURCE} ? 1 : 0;
 
-## accessors
-
 sub new {
     confess __PACKAGE__ . " is an abstract base class, you must provide a constructor.";
 }
 
-#sub is_inline { $_[0]{is_inline} }
-#sub definition_context { $_[0]{definition_context} }
-
 sub _initialize_body {
     confess "No body to initialize, " . __PACKAGE__ . " is an abstract base class";
 }
index 3621a8a..b029440 100644 (file)
@@ -12,8 +12,6 @@ our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Class::MOP::Method::Generated';
 
-#sub _expected_method_class { $_[0]{_expected_method_class} }
-
 sub _uninlined_body {
     my $self = shift;
 
index 2a32066..a2f1c80 100644 (file)
@@ -103,11 +103,6 @@ sub namespace {
     \%{$_[0]->{'package'} . '::'} 
 }
 
-#sub method_metaclass         { $_[0]->{'method_metaclass'}            }
-#sub wrapped_method_metaclass { $_[0]->{'wrapped_method_metaclass'}    }
-
-#sub _method_map              { $_[0]->{'methods'}                     }
-
 # utility methods
 
 {