This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
New opcode category :load, for require, dofile and caller.
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Tue, 9 Oct 2007 08:46:24 +0000 (08:46 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Tue, 9 Oct 2007 08:46:24 +0000 (08:46 +0000)
p4raw-id: //depot/perl@32073

ext/Opcode/Opcode.pm

index a92fc28..e0078e5 100644 (file)
@@ -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