Author: jonathan
Date: Sat Jul 26 13:45:00 2008
New Revision: 29771

Modified:
   trunk/languages/perl6/src/parser/actions.pm

Log:
[rakudo] Fix for when you have multiple multis without signatures (but 
different names) in a program; before, all but the first one got mis-generated.

Modified: trunk/languages/perl6/src/parser/actions.pm
==============================================================================
--- trunk/languages/perl6/src/parser/actions.pm (original)
+++ trunk/languages/perl6/src/parser/actions.pm Sat Jul 26 13:45:00 2008
@@ -426,6 +426,7 @@
         my @check_list;
         if $?PARAM_TYPE_CHECK {
             @check_list := @($?PARAM_TYPE_CHECK);
+            $?PARAM_TYPE_CHECK := 0;
         }
 
         # Go over the parameters and build multi-sig.

Reply via email to