summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method/Formatted.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-06-01 02:51:02 -0500
committerJesse Luehrs <doy@tozt.net>2009-06-01 02:57:29 -0500
commitda928b59285b96179db5cecd1325efe3aff1e93b (patch)
treeb640e2484bc7f11794586b33a8c273cae4ec1585 /lib/Bot/Games/Trait/Method/Formatted.pm
parent3e11ec4d081928b62027baae9d9ede5ab8c2da2a (diff)
downloadbot-games-da928b59285b96179db5cecd1325efe3aff1e93b.tar.gz
bot-games-da928b59285b96179db5cecd1325efe3aff1e93b.zip
allow specifying a type constraint name instead of a coderef as a formatter
Diffstat (limited to 'lib/Bot/Games/Trait/Method/Formatted.pm')
-rw-r--r--lib/Bot/Games/Trait/Method/Formatted.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Bot/Games/Trait/Method/Formatted.pm b/lib/Bot/Games/Trait/Method/Formatted.pm
index 0145bea..7e0b986 100644
--- a/lib/Bot/Games/Trait/Method/Formatted.pm
+++ b/lib/Bot/Games/Trait/Method/Formatted.pm
@@ -10,6 +10,13 @@ has formatter => (
} },
);
+sub _munge_formatter {
+ my $self = shift;
+ my ($format) = @_;
+ return $format if ref($format) eq 'CODE';
+ return $self->associated_metaclass->formatter_for($format);
+}
+
no Moose::Role;
1;