From a05e99478d4e59ed00ac368b516ea443950f62a4 Mon Sep 17 00:00:00 2001 From: pmichaud Date: Thu, 7 Jul 2011 12:34:54 -0500 Subject: [PATCH] Let Whatever.gist return '*' instead of 'Whatever<...>'. Perhaps Whatever.Str should do something similar. --- src/core/Whatever.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/Whatever.pm b/src/core/Whatever.pm index b553cd78f80..e769fe0b9f4 100644 --- a/src/core/Whatever.pm +++ b/src/core/Whatever.pm @@ -1,4 +1,6 @@ my class Whatever { multi method ACCEPTS(Whatever:D: $topic) { True } method new() { nqp::create(self) } + + multi method perl(Whatever:D:) { '*' } }