in reply to Re: Pop quiz: find the bug
in thread Pop quiz: find the bug
Perhaps I'm being dense, but I think [c]hromatic's solution is overkill.
If I were writing (or re-writing) the entire code snippet from scratch, I'd agree. The point of replacing the switch statement was twofold. First, I don't like switch statements. I find them generally unperlish. Second, I wanted to replace just that code, in a local refactoring. Since it was a bugfix, I didn't want to change a bunch of other variables.
That left me with the question, "How do I update the values of these variables based on identifying keys, while maintaining the variable names?" It was shorter than reassigning the variables from the hash values.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Pop quiz: find the bug
by jjohn (Beadle) on Jul 05, 2002 at 05:42 UTC |