From 6164a8298eb3197f286828e2807f063f9b2ed4cb Mon Sep 17 00:00:00 2001 From: Jonathan Worthington Date: Wed, 1 Jul 2020 14:31:49 +0200 Subject: [PATCH] Toss spesh plugin related line in dispatch:<::> We no longer need to come here for error production. --- src/core.c/Mu.pm6 | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core.c/Mu.pm6 b/src/core.c/Mu.pm6 index c62c68686e8..d9ca8fd7995 100644 --- a/src/core.c/Mu.pm6 +++ b/src/core.c/Mu.pm6 @@ -990,8 +990,6 @@ Perhaps it can be found at https://docs.raku.org/type/$name" method dispatch:<::>(Mu \SELF: $name, Mu $type, |c) is raw { my $meth; my $ctx := nqp::ctxcaller(nqp::ctx()); - # Bypass wrapping thunk if redirected from spesh plugin - $ctx := nqp::ctxcaller($ctx) if $*SPESH-THUNKED-DISPATCH; if nqp::istype(self, $type) { my $sym-found := 0; my $caller-type;