diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-29 21:43:53 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-10-11 00:10:13 -0700 |
commit | 2882b3ff194c533cea5909d6f11ee4a911ef0f9e (patch) | |
tree | 7121e93147d6f220f05b3e7773adb1d6653f3257 /opnames.h | |
parent | 4b6cf48bb4558c51745baf834133575633be736a (diff) | |
download | perl-2882b3ff194c533cea5909d6f11ee4a911ef0f9e.tar.gz |
Add lvavref op type
This will be used for slurpy array ref assignments. \(@a) = \(@b)
will make @a share the same elements as @b.
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -396,10 +396,11 @@ typedef enum opcode { OP_REFASSIGN = 379, OP_LVREF = 380, OP_LVREFSLICE = 381, + OP_LVAVREF = 382, OP_max } opcode; -#define MAXO 382 +#define MAXO 383 #define OP_FREED MAXO /* the OP_IS_* macros are optimized to a simple range check because |