diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 01:49:20 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-24 01:49:20 +0000 |
commit | 7a52d87a7fbc7848e6b3e9e96db52d4070212cca (patch) | |
tree | 3821fdd60a6fdec55d2a219fb6d5cff9686bed03 /dump.c | |
parent | a9ef352ac26829339bf17aa20568b3bde2fb1dd0 (diff) | |
download | perl-7a52d87a7fbc7848e6b3e9e96db52d4070212cca.tar.gz |
redo change#2061 and parts of change#1169 with code in the
parser; PL_last_proto hackery gone, strict 'subs' in now
implemented in the optimizer where specifying the exceptional
cases is much more robust; '*' (bareword) prototype now works
reliably when used in second and subsequent arguments
p4raw-link: @2061 on //depot/perl: bf8481137c02593eb36f8d0e234a2ec41a1c92e4
p4raw-link: @1169 on //depot/perl: 2a841d1398ee9bbf30a942905192cc2591b3e92a
p4raw-id: //depot/perl@3447
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -481,6 +481,8 @@ do_op_dump(I32 level, PerlIO *file, OP *o) else if (o->op_type == OP_CONST) { if (o->op_private & OPpCONST_BARE) sv_catpv(tmpsv, ",BARE"); + if (o->op_private & OPpCONST_STRICT) + sv_catpv(tmpsv, ",STRICT"); } else if (o->op_type == OP_FLIP) { if (o->op_private & OPpFLIP_LINENUM) |