Created
July 25, 2013 21:44
-
-
Save jnthn/6084057 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/Perl6/Metamodel/BOOTSTRAP.nqp b/src/Perl6/Metamodel/BOOTSTRAP.nqp | |
index 0e1e301..0f77155 100644 | |
--- a/src/Perl6/Metamodel/BOOTSTRAP.nqp | |
+++ b/src/Perl6/Metamodel/BOOTSTRAP.nqp | |
@@ -1833,15 +1833,15 @@ Perl6::Metamodel::ParametricRoleGroupHOW.set_selector_creator({ | |
Perl6::Metamodel::ParametricRoleGroupHOW.pretend_to_be([Cool, Any, Mu]); | |
Perl6::Metamodel::ParametricRoleGroupHOW.configure_punning( | |
Perl6::Metamodel::ClassHOW, | |
- hash( ACCEPTS => Mu )); | |
+ hash( ACCEPTS => Mu, item => Mu )); | |
Perl6::Metamodel::ParametricRoleHOW.pretend_to_be([Cool, Any, Mu]); | |
Perl6::Metamodel::ParametricRoleHOW.configure_punning( | |
Perl6::Metamodel::ClassHOW, | |
- hash( ACCEPTS => Mu )); | |
+ hash( ACCEPTS => Mu, item => Mu )); | |
Perl6::Metamodel::CurriedRoleHOW.pretend_to_be([Cool, Any, Mu]); | |
Perl6::Metamodel::CurriedRoleHOW.configure_punning( | |
Perl6::Metamodel::ClassHOW, | |
- hash( ACCEPTS => Mu )); | |
+ hash( ACCEPTS => Mu, item => Mu )); | |
# Similar for packages and modules, but just has methods from Any. | |
Perl6::Metamodel::PackageHOW.pretend_to_be([Any, Mu]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment