Message-ID: <
4116C887.9080400@divsol.com>
p4raw-id: //depot/perl@23212
#
package B;
-our $VERSION = '1.05';
+our $VERSION = '1.06';
use XSLoader ();
require Exporter;
=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
=item type
-=item seq
+=item opt
+
+=item static
=item flags
=item private
+=item spare
+
=back
=head2 B::UNOP METHOD
#define OP_static(o) o->op_static
#define OP_flags(o) o->op_flags
#define OP_private(o) o->op_private
+#define OP_spare(o) o->op_spare
MODULE = B PACKAGE = B::OP PREFIX = OP_
OP_private(o)
B::OP o
+U8
+OP_spare(o)
+ B::OP o
+
void
OP_oplist(o)
B::OP o