From 5c09ebb9d0696917581c01547adc9cda7237f25b Mon Sep 17 00:00:00 2001 From: Jonathan Worthington Date: Tue, 16 Feb 2010 21:49:20 +0100 Subject: [PATCH] Implement Bool.ACCEPTS. --- src/core/Bool.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/Bool.pm b/src/core/Bool.pm index 46f488c0be8..0a6d334f561 100644 --- a/src/core/Bool.pm +++ b/src/core/Bool.pm @@ -1,3 +1,4 @@ augment class Bool { method Bool { self } -} \ No newline at end of file + method ACCEPTS($topic) { self } +}