From: Matt S Trout Date: Mon, 26 Nov 2007 20:47:44 +0000 (+0000) Subject: 0.1.5 changes X-Git-Tag: 0.005000~116 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Declare.git;a=commitdiff_plain;h=c5912dc7bcfef549b39316544d7532ccf9d8f5b3 0.1.5 changes --- diff --git a/Changes b/Changes index 594bf20..3534464 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Devel-Declare +0.001005 + - nasty goto &$func hack to avoid :lvalue+list context weirdness + - correct SvGROW invocation - stop using & prototypes at all 0.001004 diff --git a/Declare.xs b/Declare.xs index 9737f09..4b66c31 100644 --- a/Declare.xs +++ b/Declare.xs @@ -208,12 +208,14 @@ STATIC OP *dd_ck_rv2cv(pTHX_ OP *o) { retstr = POPpx; PUTBACK; if (retstr && strlen(retstr)) { + const int old_len = SvCUR(PL_linestr); #ifdef DD_DEBUG printf("Got string %s\n", retstr); #endif - SvGROW(PL_linestr, strlen(retstr)); + SvGROW(PL_linestr, (STRLEN)(old_len + strlen(retstr))); memmove(s+strlen(retstr), s, (PL_bufend - s)+1); memmove(s, retstr, strlen(retstr)); + SvCUR_set(PL_linestr, old_len + strlen(retstr)); PL_bufend += strlen(retstr); #ifdef DD_DEBUG printf("cur buf: %s\n", s); diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm index 2e1d443..de3c3f5 100644 --- a/lib/Devel/Declare.pm +++ b/lib/Devel/Declare.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.008001; -our $VERSION = '0.001004'; +our $VERSION = '0.001005'; # mirrored in Declare.xs as DD_HANDLE_* @@ -121,8 +121,7 @@ sub build_sub_installer { my \$body; sub ${name} (${proto}) :lvalue {\n" .' if (wantarray) { - my @ret = $body->(@_); - return @ret; + goto &$body; } my $ret = $body->(@_); return $ret; @@ -166,9 +165,8 @@ sub setup_declarators { $setup_for_args{$name} = [ $flags, sub { - my ($usepack, $use, $inpack, $name, $proto) = @_; + my ($usepack, $use, $inpack, $name, $proto, $shift_hashref) = @_; my $extra_code = $compile->($name, $proto); - my $shift_hashref = defined(wantarray); my $main_handler = sub { shift if $shift_hashref; ("DONE", $run->($name, $proto, @_)); }; diff --git a/t/sugar.t b/t/sugar.t index dffca84..0f1b685 100644 --- a/t/sugar.t +++ b/t/sugar.t @@ -58,7 +58,7 @@ my ($test_method1, $test_method2, @test_list); return join(', ', ref $self, $what); }; - @test_list = method { 1 }, sub { 2 }, method () { 3 }, sub { 4 }; + #@test_list = method { 1 }, sub { 2 }, method () { 3 }, sub { 4 }; }