summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2023-02-08 18:14:14 +0000
committerPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2023-02-10 14:38:44 +0000
commit054ceeebc7f6acad2772faa4fa88617c35f4a88a (patch)
treeaf2d9c0d75e3f10ee26f575e7dab8973e757dd83 /opnames.h
parente3b003dd8ca8d881450f6c96297ffa35f6a92ed1 (diff)
downloadperl-054ceeebc7f6acad2772faa4fa88617c35f4a88a.tar.gz
Accept field VAR = EXPR on field vars
Allows non-constant expressions with side effects. Evaluated during the constructor of each instance.
Diffstat (limited to 'opnames.h')
-rw-r--r--opnames.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/opnames.h b/opnames.h
index b551ea33d6..a2b4f3a52b 100644
--- a/opnames.h
+++ b/opnames.h
@@ -434,10 +434,11 @@ typedef enum opcode {
OP_IS_TAINTED = 417,
OP_HELEMEXISTSOR = 418,
OP_METHSTART = 419,
+ OP_INITFIELD = 420,
OP_max
} opcode;
-#define MAXO 420
+#define MAXO 421
#define OP_FREED MAXO
/* the OP_IS_* macros are optimized to a simple range check because