# New Ticket Created by  Will Coleda 
# Please include the string:  [perl #29927]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=29927 >


Dumper is currently unable to dump the 'Array' type that's used by the 'foldup' opcode.

This patch seems to fix that.

bash-2.05a$ cvs diff library/Data/Dumper/Default.imc 
Index: library/Data/Dumper/Default.imc
===================================================================
RCS file: /cvs/public/parrot/library/Data/Dumper/Default.imc,v
retrieving revision 1.6
diff -u -r1.6 Default.imc
--- library/Data/Dumper/Default.imc     30 Apr 2004 16:12:41 -0000      1.6
+++ library/Data/Dumper/Default.imc     28 May 2004 04:57:48 -0000
@@ -542,6 +542,18 @@
     .pcc_end_return
 .end
 
+=item style."pmcArray"( name, array )
+
+Dumps an Array.
+
+=cut
+
+.sub pmcArray
+    S0 = "pmcPerlArray"
+    callmethod
+.end
+
+
 =back
 
 =head1 AUTHOR

Reply via email to