From 2ad947fe031aa739d98474eb933eede3659305ac Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 7 Apr 2003 11:35:00 -0300 Subject: [PATCH] new test options for luaL_getn/setn --- ltests.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ltests.c b/ltests.c index 3f2b724b..71006bb5 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 1.156 2003/03/19 21:14:53 roberto Exp roberto $ +** $Id: ltests.c,v 1.157 2003/04/03 13:35:34 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -717,6 +717,16 @@ static int testC (lua_State *L) { else if EQ("type") { lua_pushstring(L, lua_typename(L, lua_type(L, getnum))); } + else if EQ("getn") { + int i = getnum; + lua_pushintegral(L, luaL_getn(L, i)); + } + else if EQ("setn") { + int i = getnum; + int n = cast(int, lua_tonumber(L, -1)); + luaL_setn(L, i, n); + lua_pop(L, 1); + } else luaL_error(L, "unknown instruction %s", buff); } return 0;