in reply to No Pause on Elsif in Debugger
Update: missed the point.
Its just following the control flow. Its not going to evaluate elsifs that it doesn't need to, because a prior condition passed. I think the rands in your statements are obscuring the issue.
if ( 1 ) { # debugger will see this, just like code } elsif ( 1 ) { # won't see this - nothing will } else { # nor this either }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: No Pause on Elsif in Debugger
by matija (Priest) on Jul 23, 2004 at 05:10 UTC | |
|
Re^2: No Pause on Elsif in Debugger
by CountZero (Bishop) on Jul 23, 2004 at 15:06 UTC |