docs for CMOP::Metohd
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Accessor.pm
index 3b4e5d8..834b0e8 100644 (file)
@@ -67,7 +67,8 @@ sub initialize_body {
         ($self->is_inline ? 'inline' : ())
     );
 
-    $self->{'body'} = $self->$method_name();
+    eval { $self->{'body'} = $self->$method_name() };
+    die $@ if $@;
 }
 
 ## generators
@@ -118,7 +119,7 @@ sub generate_accessor_method_inline {
     my $attr_name     = $attr->name;
     my $meta_instance = $attr->associated_class->instance_metaclass;
 
-    return $self->_eval_closure(
+    my $code = $self->_eval_closure(
         {},
         'sub {'
         . $meta_instance->inline_set_slot_value('$_[0]', $attr_name, '$_[1]')
@@ -126,6 +127,9 @@ sub generate_accessor_method_inline {
         . $meta_instance->inline_get_slot_value('$_[0]', $attr_name)
         . '}'
     );
+    confess "Could not generate inline accessor because : $@" if $@;
+
+    return $code;
 }
 
 sub generate_reader_method_inline {
@@ -134,13 +138,16 @@ sub generate_reader_method_inline {
     my $attr_name     = $attr->name;
     my $meta_instance = $attr->associated_class->instance_metaclass;
 
-    return $self->_eval_closure(
+     my $code = $self->_eval_closure(
          {},
         'sub {'
         . 'confess "Cannot assign a value to a read-only accessor" if @_ > 1;'
         . $meta_instance->inline_get_slot_value('$_[0]', $attr_name)
         . '}'
     );
+    confess "Could not generate inline reader because : $@" if $@;
+
+    return $code;
 }
 
 sub generate_writer_method_inline {
@@ -149,12 +156,15 @@ sub generate_writer_method_inline {
     my $attr_name     = $attr->name;
     my $meta_instance = $attr->associated_class->instance_metaclass;
 
-    return $self->_eval_closure(
+    my $code = $self->_eval_closure(
         {},
         'sub {'
         . $meta_instance->inline_set_slot_value('$_[0]', $attr_name, '$_[1]')
         . '}'
     );
+    confess "Could not generate inline writer because : $@" if $@;
+
+    return $code;
 }
 
 
@@ -164,12 +174,15 @@ sub generate_predicate_method_inline {
     my $attr_name     = $attr->name;
     my $meta_instance = $attr->associated_class->instance_metaclass;
 
-    return $self->_eval_closure(
+    my $code = $self->_eval_closure(
         {},
        'sub {'
        . $meta_instance->inline_is_slot_initialized('$_[0]', $attr_name)
        . '}'
     );
+    confess "Could not generate inline predicate because : $@" if $@;
+
+    return $code;
 }
 
 sub generate_clearer_method_inline {
@@ -178,12 +191,15 @@ sub generate_clearer_method_inline {
     my $attr_name     = $attr->name;
     my $meta_instance = $attr->associated_class->instance_metaclass;
 
-    return $self->_eval_closure(
+    my $code = $self->_eval_closure(
         {},
         'sub {'
         . $meta_instance->inline_deinitialize_slot('$_[0]', $attr_name)
         . '}'
     );
+    confess "Could not generate inline clearer because : $@" if $@;
+
+    return $code;
 }
 
 1;
@@ -299,7 +315,7 @@ Stevan Little E<lt>stevan@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2006-2008 by Infinity Interactive, Inc.
+Copyright 2006-2009 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>