From f9cf402fbd1ba2ab00f5aa5f7d0ff5c9c0580dd5 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 12 Apr 2000 15:57:19 -0300 Subject: first implementation of FOR --- ltests.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 596fee2b..75be74c3 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 1.11 2000/04/06 17:35:23 roberto Exp roberto $ +** $Id: ltests.c,v 1.12 2000/04/07 13:12:50 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -104,6 +104,8 @@ static int printop (lua_State *L, Instruction i) { case OP_PUSHNILJMP: O("PUSHNILJMP"); break; case OP_JMPT: S("JMPT"); break; case OP_JMPF: S("JMPF"); break; + case OP_FORPREP: S("OP_FORPREP"); break; + case OP_FORLOOP: S("OP_FORLOOP"); break; case OP_CLOSURE: AB("CLOSURE"); break; case OP_SETLINE: U("SETLINE"); break; } -- cgit v1.2.3-55-g6feb