http://qs1969.pair.com?node_id=790837


in reply to Re^3: Dynamically Changing Packages w/out Eval
in thread Dynamically Changing Packages w/out Eval

True, but he wanted to avoid eval "because it obfuscates the code". It's clearly the opposite here.

Replies are listed 'Best First'.
Re^5: Dynamically Changing Packages w/out Eval
by betterworld (Curate) on Aug 24, 2009 at 19:54 UTC

    I avoid eval out of habit. Even if you make sure that you don't eval user input and keep the evaluated code minimal, it's still annoying to debug warnings like "Argument isn't numeric at eval 2718, line 314".

    Though you're right that my code looks a bit obfuscated.

      it's still annoying to debug warnings like "Argument isn't numeric at eval 2718, line 314".

      Note that my code does nothing but load a module. Everything is calculate beforehand. To avoid problems such as the one you mention, calculate everything in advance or move the calculations into a sub called from the evaluated code.

      There's something very wrong if you're evaluating 314 lines.