From bf8a6af50ab678c783d496e4fc102db75cfe92b3 Mon Sep 17 00:00:00 2001 From: Jonathan Worthington Date: Fri, 8 Jul 2011 01:50:00 +0200 Subject: [PATCH] Allow | to work on a Parcel. --- src/core/Parcel.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/Parcel.pm b/src/core/Parcel.pm index e2ad8063553..e93c45d4795 100644 --- a/src/core/Parcel.pm +++ b/src/core/Parcel.pm @@ -89,6 +89,8 @@ my class Parcel does Positional { multi method DUMP(Parcel:D:) { self.DUMP-ID() ~ '(:storage(' ~ DUMP($!storage) ~ '))' } + + method ARGLIST_FLATTENABLE() { $!storage } }