diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-12-18 00:24:01 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-12-18 00:24:01 +0000 |
commit | 5912531faf421dc0ccf67f600667fb8051dc62a5 (patch) | |
tree | 054a27cdab6840aafc8b7e3aea4b1e59a4e7cc7e /pod/perlintern.pod | |
parent | 1654d59374622f7e3936c1480c6dd5a043f5d77b (diff) | |
download | perl-5912531faf421dc0ccf67f600667fb8051dc62a5.tar.gz |
move parser state into new parser object, PL_parser
p4raw-id: //depot/perl@29570
Diffstat (limited to 'pod/perlintern.pod')
-rw-r--r-- | pod/perlintern.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod index 5c901cd47d..785a36a3f6 100644 --- a/pod/perlintern.pod +++ b/pod/perlintern.pod @@ -621,7 +621,7 @@ in PL_op->op_targ), wasting a name SV for them doesn't make sense. The SVs in the names AV have their PV being the name of the variable. NV+1..IV inclusive is a range of cop_seq numbers for which the name is valid. For typed lexicals name SV is SVt_PVMG and SvSTASH points at the -type. For C<our> lexicals, the type is also SVt_PVGV, with the MAGIC slot +type. For C<our> lexicals, the type is also SVt_PVMG, with the OURSTASH slot pointing at the stash of the associated global (so that duplicate C<our> declarations in the same package can be detected). SvCUR is sometimes hijacked to store the generation number during compilation. |