From 033a9cbb66d65a0918e2c095d12937afb82fd4b2 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Tue, 2 Jul 2024 17:17:01 +0100 Subject: add (each (x arr) ...) array-loop form --- dis.c | 1 + 1 file changed, 1 insertion(+) (limited to 'dis.c') diff --git a/dis.c b/dis.c index 0ca77e7..2d7e9a2 100644 --- a/dis.c +++ b/dis.c @@ -108,6 +108,7 @@ static size_t disasm_instr_h(Chunk *ch, size_t ip, int depth) { SIMPLE_INSTR(OP_HALT, "halt") SIMPLE_INSTR(OP_ARRNEW, "arrnew") SIMPLE_INSTR(OP_ARRAPPEND, "arrappend") + SIMPLE_INSTR(OP_ARRLEN, "arrlen") #undef SIMPLE_INSTR default: -- cgit v1.2.3