This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #3422] [PATCH] CHECK routine called after syntax error
authorSteve Peters <steve@fisharerojo.org>
Tue, 23 Nov 2004 00:04:24 +0000 (00:04 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Tue, 23 Nov 2004 09:26:03 +0000 (09:26 +0000)
From: "Steve Peters via RT" <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-3422-100830.4.45764701781506@perl.org>

p4raw-id: //depot/perl@23526

ext/B/B/Deparse.pm

index 8b31e6f..cc575e3 100644 (file)
@@ -2366,6 +2366,8 @@ sub mapop {
 
 sub pp_mapwhile { mapop(@_, "map") }
 sub pp_grepwhile { mapop(@_, "grep") }
+sub pp_mapstart { baseop(@_, "map") }
+sub pp_grepstart { baseop(@_, "grep") }
 
 sub pp_list {
     my $self = shift;