in reply to Re^5: No Pause on Elsif in Debugger (history)
in thread No Pause on Elsif in Debugger
works fine. Changing line 11 to:#!/your/perl/here use strict; use warnings; my $rand = rand; if ( $rand < rand ) { print "if1: $rand\n"; } elsif ( $rand < rand ) { print "elsif2: $rand\n"; } else { print "else3: $rand\n"; }
gives the error:elsif ( ( $rand < rand ) { print "elsif2: $rand\n"; }
But using this version instead:syntax error at C:\if_elsif.pl line 12, near ") {"
gives the compile error:elsif ( $rand < _rand ) { print "elsif2: $rand\n"; }
Given that you can chain elsifs together indefinitely, it is possible to cause an error at any line after line 7, but still be pointed to line 7.Bareword "_rand" not allowed while "strict subs" in use at C:\if_elsif +.pl line 7.
You may be wondering what happens if use strict is turned off - it just generates a warning instead:
Turning off warnings then doesn't complain. I was unable to generate a message that pointed to some line besides the line of the actual error +/-1. Only turning on strict and warnings caused misleading messages.Argument "_rand" isn't numeric in numeric lt (<) at C:\Perl\perlmonks\ +if_elsif.pl line 7.
So it appears (from minimial empirical evidence) that syntax errors generate mostly correct line numbers, but strict and warnings do not, probably because information about the structure of the if/elsif/else has been removed from the [insert appropriate entity name here]
However, if another if/elsif/else is nested in one of the if blocks, it's if entry point is retained (but it's elsif/else info is not).
The remaining question I have is:
What information is thrown out, and at what stage of the compilation/execution?[The original question, "Why doesn't the debugger pause on elsif conditionals?", seems to hinge on the answer to this new question.]
-QM
--
Quantum Mechanics: The dreams stuff is made of
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: No Pause on Elsif in Debugger (history)
by ysth (Canon) on Jul 26, 2004 at 01:19 UTC |