diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-09 08:46:24 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-09 08:46:24 +0000 |
commit | 6e8b06a81f246e3617b8995fd95f9e56936e2028 (patch) | |
tree | 8ec1fb295304c36f9fdc118396610ee319a3e774 /ext/Opcode | |
parent | 49fe901c1efedb12a813df95fabefadf85b99a41 (diff) | |
download | perl-6e8b06a81f246e3617b8995fd95f9e56936e2028.tar.gz |
New opcode category :load, for require, dofile and caller.
p4raw-id: //depot/perl@32073
Diffstat (limited to 'ext/Opcode')
-rw-r--r-- | ext/Opcode/Opcode.pm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index a92fc28d99..e0078e5d38 100644 --- a/ext/Opcode/Opcode.pm +++ b/ext/Opcode/Opcode.pm @@ -6,7 +6,7 @@ use strict; our($VERSION, @ISA, @EXPORT_OK); -$VERSION = "1.10"; +$VERSION = "1.11"; use Carp; use Exporter (); @@ -536,6 +536,14 @@ SystemV Interprocess Communications: shmctl shmget shmread shmwrite +=item :load + +This tag holds opcodes related to loading modules and getting information +about calling environment and args. + + require dofile + caller + =item :still_to_be_decided chdir @@ -550,9 +558,6 @@ SystemV Interprocess Communications: pack unpack -- can be used to create/use memory pointers entereval -- can be used to hide code from initial compile - require dofile - - caller -- get info about calling environment and args reset |