lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 3b001d9a9ddcd9a7ea75c1d021850f63b3a61ce0
parent c36b5cc726dc5443d78b59c4ef1be2a41e08de59
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon,  4 Mar 2002 12:26:34 -0300

more tests for boolean API

Diffstat:
Mltests.c | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 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); }