From 784daae2ca0a0873ff014bb038708de3a684b49d Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Fri, 3 Jan 2020 14:28:16 +0100 Subject: [PATCH] Add a "raku" method to BOOTSTRAPATTR --- src/Perl6/bootstrap.c/BOOTSTRAP.nqp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Perl6/bootstrap.c/BOOTSTRAP.nqp b/src/Perl6/bootstrap.c/BOOTSTRAP.nqp index e920ee0cd70..a91e9bc985a 100644 --- a/src/Perl6/bootstrap.c/BOOTSTRAP.nqp +++ b/src/Perl6/bootstrap.c/BOOTSTRAP.nqp @@ -41,6 +41,7 @@ my class BOOTSTRAPATTR { method compose($obj, :$compiler_services) { } method gist() { $!type.HOW.name($!type) ~ ' ' ~ $!name } method perl() { 'BOOTSTRAPATTR.new' } + method raku() { 'BOOTSTRAPATTR.new' } method Str() { $!name } }