2016-03-26から1日間の記事一覧

opnames.h

Perl › 言語実装 › here opnames.hには、オペレーションコードが記述されています。 /* opname.h */ typedef enum opcode { OP_NULL = 0, OP_STUB = 1, OP_SCALAR = 2, OP_PUSHMARK = 3, OP_WANTARRAY = 4, OP_CONST = 5, OP_GVSV = 6, ... }; Perlは、構文…