in reply to Re^2: Perl_API get_sv and SvIV_set
in thread Perl_API get_sv and SvIV_set
It sounds like you are looking for the opcode equivalent of the 'continue' statement. From a casual look at the differences in the output of these two commands:
I would guess that the opcode is 'pp_next'.perl -MO=Concise -e 'while ($z == 1) { $x=2;} continue {$y=3;}' perl -MO=Concise -e 'while ($z == 1) { $x=2;}'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl_API get_sv and SvIV_set
by BUU (Prior) on Apr 17, 2006 at 03:01 UTC | |
by diotalevi (Canon) on Apr 17, 2006 at 04:47 UTC | |
by BUU (Prior) on Apr 17, 2006 at 09:41 UTC | |
by diotalevi (Canon) on Apr 17, 2006 at 15:19 UTC | |
by m.att (Pilgrim) on Apr 17, 2006 at 14:38 UTC |