in reply to Re: Missing base classes when called from Tk
in thread Missing base classes when called from Tk
I have other duplicate named, but in different package variables too. I think each @ISA is specific / package -- otherwise how can you walk the symbol table for a package to see if it ISAnother type package?{package one;....} {package two; @ISA = qw(one); use base qw(one);...} {package three; @ISA = qw(two); use base qw(two);...} {package four; @ISA = qw(three); use base qw(three);...}
|
|---|