return $self;
}
-
-sub _prepare_code {
- my ( $self, %args ) = @_;
-
- my ( $line, $file );
-
- if ( my $ctx = ( $args{context} || $self->definition_context ) ) {
- $line = $ctx->{line};
- if ( my $desc = $ctx->{description} ) {
- $file = "$desc defined at $ctx->{file}";
- } else {
- $file = $ctx->{file};
- }
- } else {
- ( $line, $file ) = ( 0, "generated method (unknown origin)" );
- }
-
- my $code = $args{code};
-
- # if it's an array of lines, join it up
- # don't use newlines so that the definition context is more meaningful
- $code = join(@$code, ' ') if ref $code;
-
- return qq{#line $line "$file"\n} . $code;
-}
-
sub _new {
my $class = shift;
my $options = @_ == 1 ? $_[0] : {@_};
);
}
+sub _add_line_directive {
+ my ( $self, %args ) = @_;
+
+ my ( $line, $file );
+
+ if ( my $ctx = ( $args{context} || $self->definition_context ) ) {
+ $line = $ctx->{line};
+ if ( my $desc = $ctx->{description} ) {
+ $file = "$desc defined at $ctx->{file}";
+ } else {
+ $file = $ctx->{file};
+ }
+ } else {
+ ( $line, $file ) = ( 0, "generated method (unknown origin)" );
+ }
+
+ my $code = $args{code};
+
+ # if it's an array of lines, join it up
+ # don't use newlines so that the definition context is more meaningful
+ $code = join(@$code, ' ') if ref $code;
+
+ return qq{#line $line "$file"\n} . $code;
+}
+
+sub _compile_code {
+ my ( $self, %args ) = @_;
+
+ my $code = $self->_add_line_directive(%args);
+
+ $self->_eval_closure($args{environment}, $code);
+}
+
1;
__END__