summaryrefslogtreecommitdiffstats
path: root/bytecode.h
diff options
context:
space:
mode:
Diffstat (limited to 'bytecode.h')
-rw-r--r--bytecode.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/bytecode.h b/bytecode.h
index ee50d2cb..8662c4d9 100644
--- a/bytecode.h
+++ b/bytecode.h
@@ -25,6 +25,9 @@ enum {
OP_HAS_UFUNC = 64,
OP_IS_CALL_PSEUDO = 128,
OP_HAS_BINDING = 1024,
+ // NOTE: Not actually part of any op -- a pseudo-op flag for special
+ // handling of `break`.
+ OP_BIND_WILDCARD = 2048,
};
struct opcode_description {
opcode op;