From 0308a534a635b8c34297657046d32a3f05818821 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Fri, 14 Sep 2012 13:35:53 -0700 Subject: Make SUPER::method calls work in moved stashes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BEGIN { *foo:: = *bar::; *bar:: = *baz; } package foo; @ISA = 'door'; sub door::dohtem { 'dohtem' } warn bar->SUPER::dohtem; __END__ Can't locate object method "dohtem" via package "bar::SUPER" at - line 8. When gv_fetchmethod_pvn_flags looks up a package it changes SUPER to __PACKAGE__ . "::SUPER" first. Then gv_fetchmeth_pvn uses HvNAME on the package and strips off the ::SUPER suffix if any, before doing isa lookup. The problem with using __PACKAGE__ (actually HvNAME) is that it might not be possible to find the current stash under that name. HvENAME should be used instead. The above example happens to work if @ISA is changed to ‘our @ISA’, but that is because of an @ISA bug. --- t/op/method.t | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 't/op/method.t') diff --git a/t/op/method.t b/t/op/method.t index 5b8c1eec78..aaa70be6af 100644 --- a/t/op/method.t +++ b/t/op/method.t @@ -13,7 +13,7 @@ BEGIN { use strict; no warnings 'once'; -plan(tests => 108); +plan(tests => 109); @A::ISA = 'B'; @B::ISA = 'C'; @@ -249,6 +249,20 @@ sub OtherSouper::method { "Isidore Ropen, Draft Manager" } is eval { (main->SUPER::method)[0] }, 'main', 'Mentioning *SUPER:: does not stop ->SUPER from working in main'; } +{ + BEGIN { + *Mover:: = *Mover2::; + *Mover2:: = *foo; + } + package Mover; + no strict; + # Not our(@ISA), because the bug we are testing for interacts with an + # our() bug that cancels this bug out. + @ISA = 'door'; + sub door::dohtem { 'dohtem' } + ::is eval { Mover->SUPER::dohtem; }, 'dohtem', + 'SUPER inside moved package'; +} # failed method call or UNIVERSAL::can() should not autovivify packages is( $::{"Foo::"} || "none", "none"); # sanity check 1 -- cgit v1.2.1