This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Let B::Deparse know about the [perl #20444] fix.
authorFather Chrysostomos <sprout@cpan.org>
Tue, 21 Sep 2010 05:05:39 +0000 (22:05 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 21 Sep 2010 05:05:39 +0000 (22:05 -0700)
commita539498ab05fd838aa1eaaebbe1f3528bb97d1d3
treec937d131edf9b5876c839b01039576545ee5b3d5
parent2474a784a94d8c70aea9c330d9f2a902b8a68b85
Let B::Deparse know about the [perl #20444] fix.

With the previous commit:

$ ./perl -Ilib -MO=Deparse -e'"foo" =~ (1?/foo/:/bar/)'
'foo' =~ /foo/;
-e syntax OK

So the Deparse output no longer matches what perl does. With
this commit:

$ ./perl -Ilib -MO=Deparse -e'"foo" =~ (1?/foo/:/bar/)'
'foo' =~ ($_ =~ /foo/);
-e syntax OK
dist/B-Deparse/Deparse.pm
dist/B-Deparse/t/deparse.t