diff options
author | Jim Cromie <jcromie@cpan.org> | 2004-08-08 12:42:47 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-08-10 07:21:19 +0000 |
commit | a60ba18bf6de9909177ce1cfc42df4266790d232 (patch) | |
tree | c62866f23ae6a6b15997f358c3290590802cda05 /ext/B/B.pm | |
parent | 194cfca00c1d8aa655546dfcf66b7606fc587a4c (diff) | |
download | perl-a60ba18bf6de9909177ce1cfc42df4266790d232.tar.gz |
2 patches: goto.t, B.pm/xs
Message-ID: <4116C887.9080400@divsol.com>
p4raw-id: //depot/perl@23212
Diffstat (limited to 'ext/B/B.pm')
-rw-r--r-- | ext/B/B.pm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm index 68600a7606..5961c07db2 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -7,7 +7,7 @@ # package B; -our $VERSION = '1.05'; +our $VERSION = '1.06'; use XSLoader (); require Exporter; @@ -920,6 +920,9 @@ with the leading "class indication" prefix (C<"op_">) removed. =head2 B::OP Methods +These methods get the values of similarly named fields within the OP +data structure. See top of C<op.h> for more info. + =over 4 =item next @@ -944,12 +947,16 @@ This returns the op description from the global C PL_op_desc array =item type -=item seq +=item opt + +=item static =item flags =item private +=item spare + =back =head2 B::UNOP METHOD |