TObject' renamed to TValue' + other name changes and better assertions
for incremental garbage collection
This commit is contained in:
12
lvm.h
12
lvm.h
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: lvm.h,v 1.48 2003/05/05 18:39:57 roberto Exp $
|
||||
** $Id: lvm.h,v 1.49 2003/07/16 20:49:02 roberto Exp roberto $
|
||||
** Lua virtual machine
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@@ -22,12 +22,12 @@
|
||||
(ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
|
||||
|
||||
|
||||
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
|
||||
int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2);
|
||||
const TObject *luaV_tonumber (const TObject *obj, TObject *n);
|
||||
int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
|
||||
int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
|
||||
const TValue *luaV_tonumber (const TValue *obj, TValue *n);
|
||||
int luaV_tostring (lua_State *L, StkId obj);
|
||||
void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId val);
|
||||
void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
|
||||
void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val);
|
||||
void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val);
|
||||
StkId luaV_execute (lua_State *L, int nexeccalls);
|
||||
void luaV_concat (lua_State *L, int total, int last);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user