http://qs321.pair.com?node_id=243042


in reply to Assertions?
in thread Fun with Hook::LexWrap and code instrumentation

I don't think it wouldn't in this instance. We're tracking bug that's due to a naughty subclass breaking encapsulation (direct hash access rather than via methods).

Adding assertions to the base class won't help. That's not where the bug is.

Adding assertions to the subclasses is basically what we're doing - but at runtime not compile time.

The "problem" with perl is that because we don't have proper encapsulation we would have to add the assertions by hand to anything that might fiddle with a Foo object in a naughty manner. Doing this by hand would be a complete PITA. Doing it programmatically using Hook::LexWrap is a breeze.

Replies are listed 'Best First'.
Re: Re: Assertions?
by zby (Vicar) on Mar 14, 2003 at 14:37 UTC
    I've got it - you are right. I had a thread about code analyzis - TIMTOWDTDI, obfu and analyzis of code it seems this could be applicable here too. The difference is this would be a static method while your's is a dynamic one.