I'm monkey patching a package using a technique given at the beginning of "How can I monkey-patch an instance method in Perl?". The problem that I'm running into is that the original subroutine used a package-level my
variable which the patched subroutine appears not to have access to, either by full path specification or implicit use.
Is there any way to get at the data scoped in this way for use in the patched subroutine?
Thanks in advance!