| Acme-MetaSyntactic documentation | Contained in the Acme-MetaSyntactic distribution. |
Acme::MetaSyntactic::opcodes - The Perl opcodes theme
The names of the Perl opcodes. They are given by the
Opcode module.
Abigail
Introduced in version 0.53, published on December 19, 2005.
This module is dedicated to Perl, which turned 18 years old the day before this release was published.
| 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__