summaryrefslogtreecommitdiff
path: root/opnames.h
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2022-12-24 13:17:47 +0000
committerPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2023-02-10 12:07:02 +0000
commit99b497aa90ed7db99d29a301b47c91fba65c9cb3 (patch)
tree09e231f3a6838cdb2df9db9454981b9205046ba1 /opnames.h
parentb40895ae558e0aff0c347785dafeaaff40a01801 (diff)
downloadperl-99b497aa90ed7db99d29a301b47c91fba65c9cb3.tar.gz
Initial attack at basic 'class' feature
Adds a new experimental warning, feature, keywords and enough parsing to implement basic classes with an empty `new` constructor method. Inject a $self lexical into method bodies; populate it with the object instance, suitably shifted Creates a new OP_METHSTART opcode to perform method setup Define an aux flag to remark which stashes are classes Basic implementation of fields. Basic anonymous methods.
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 80b6d46eff..b551ea33d6 100644
--- a/opnames.h
+++ b/opnames.h
@@ -433,10 +433,11 @@ typedef enum opcode {
OP_FLOOR = 416,
OP_IS_TAINTED = 417,
OP_HELEMEXISTSOR = 418,
+ OP_METHSTART = 419,
OP_max
} opcode;
-#define MAXO 419
+#define MAXO 420
#define OP_FREED MAXO
/* the OP_IS_* macros are optimized to a simple range check because