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


in reply to Re: keywords versus variables
in thread keywords versus variables

I think perhaps it's balanced against other issues, though, and shouldn't necessarily be a singular goal.
Oh, definitely. It's a bit of a silly "metric", of course. My point about the complex data structures was that, if you have to do
$blah->{something}->{and_deeper}->[12]
you'll be pretty bug prone and so you might consider refactoring into something like
$deeper->item(12)
...which is why I put method calls on one lower level of egregiousness :)

Replies are listed 'Best First'.
Re^3: keywords versus variables
by mr_mischief (Monsignor) on Aug 30, 2007 at 18:17 UTC
    Good point. Even if you are doing the former on some level, hiding it behind the latter for most code should still help cut down on bugs. Doing the complex one in one place and the simple one in lots of other places could be quite a maintenance win.