Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Missing stringify, needed on JVM.
Fixes a couple of the enum related tests.
  • Loading branch information
jnthn committed Jun 30, 2013
1 parent 5b5225b commit 8ca095c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Metamodel/Mixins.nqp
Expand Up @@ -9,7 +9,7 @@ role Perl6::Metamodel::Mixins {
self.flush_cache($obj) if !nqp::isnull($obj) || self.is_mixin($obj);
# Work out a type name for the post-mixed-in role.
my @role_names;
for @roles { @role_names.push($_.HOW.name($_)) }
for @roles { @role_names.push(~$_.HOW.name($_)) }
my $new_name := self.name($obj) ~ '+{' ~
nqp::join(',', @role_names) ~ '}';

Expand Down

0 comments on commit 8ca095c

Please sign in to comment.