|
|
|
|
|
by x1
5115 days ago
|
|
Meh, I think you are over-inflating the benefits of a debugger. Everything you described can be achieved through proper testing. Want to know if something is efficient? Then build a test to gauge it. That way if it changes and becomes less efficient in the future your test will break. That's a much more solid approach than simply walking through the code a couple times and noticing something out of place. |
|
You're falling into the trap of "one tool to solve all problems." Why waste your time writing tests to "gauge efficiency" when a profiler tells you more, more effectively?