From 3b001d9a9ddcd9a7ea75c1d021850f63b3a61ce0 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 4 Mar 2002 12:26:56 -0300 Subject: more tests for boolean API --- ltests.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 4c040392..5130354b 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ +** $Id: ltests.c,v 1.109 2002/02/14 21:42:22 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -561,9 +561,15 @@ static int testC (lua_State *L) { else if EQ("pushnum") { lua_pushnumber(L, getnum); } + else if EQ("pushnil") { + lua_pushnil(L); + } else if EQ("pushbool") { lua_pushboolean(L, getnum); } + else if EQ("tobool") { + lua_pushnumber(L, lua_toboolean(L, getnum)); + } else if EQ("pushvalue") { lua_pushvalue(L, getnum); } -- cgit v1.2.3-55-g6feb