On Thu, Mar 19, 2015 at 9:26 PM, Tom Browder <[email protected]> wrote:
> On Mar 19, 2015 8:58 PM, "Brandon Allbery" <[email protected]> wrote:
>> On Thu, Mar 19, 2015 at 9:32 PM, Tom Browder <[email protected]>
>> wrote:
>>>
>>> if (self.$elem) { # <======= LINE 995 =============== LINE 995
>> This is an indirect method call. Is that really what you intended?
This is what I'm trying to achieve:
> No, it's supposed to be the value of the self attribute whose name is the
> value of my $elem. I have to go back and see how to do that.
And this seems to work, new line 995 (my only change in the method):
>>> if (self.{$elem}) { # <======= LINE 995 =============== LINE 995
Best,
-Tom