Acme::MetaSyntactic::opcodes - The Perl opcodes theme


Acme-MetaSyntactic documentation Contained in the Acme-MetaSyntactic distribution.

Index


Code Index:

NAME

Top

Acme::MetaSyntactic::opcodes - The Perl opcodes theme

DESCRIPTION

Top

The names of the Perl opcodes. They are given by the Opcode module.

CONTRIBUTOR

Top

Abigail

Introduced in version 0.53, published on December 19, 2005.

DEDICATION

Top

This module is dedicated to Perl, which turned 18 years old the day before this release was published.

SEE ALSO

Top

Acme::MetaSyntactic, Acme::MetaSyntactic::List.


Acme-MetaSyntactic documentation Contained in the Acme-MetaSyntactic distribution.

package Acme::MetaSyntactic::opcodes;
use strict;
use Acme::MetaSyntactic::List;
our @ISA = qw( Acme::MetaSyntactic::List );

# get the list from the current perl
use Opcode qw( opset_to_ops full_opset );
__PACKAGE__->init(
    { names => join( " ", map { uc "OP_$_" } opset_to_ops(full_opset) ) } );

1;

__END__