summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-05 15:27:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-07-05 15:27:39 -0300
commitf8279f6cd8bf22245be30649df5a2d19d868e114 (patch)
tree46172bc8ff351275f5e1232f8eb8e842fc3b8c9e /lvm.h
parent1fe280df725810594ef9b70af663dec3ea22b2de (diff)
downloadlua-f8279f6cd8bf22245be30649df5a2d19d868e114.tar.gz
lua-f8279f6cd8bf22245be30649df5a2d19d868e114.tar.bz2
lua-f8279f6cd8bf22245be30649df5a2d19d868e114.zip
optimizations for gettable (temporary)
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lvm.h b/lvm.h
index 170e8c9c..6b462e09 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 1.42 2002/06/13 13:39:55 roberto Exp roberto $ 2** $Id: lvm.h,v 1.43 2002/06/24 13:08:45 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -26,7 +26,8 @@ int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r);
26int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); 26int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2);
27const TObject *luaV_tonumber (const TObject *obj, TObject *n); 27const TObject *luaV_tonumber (const TObject *obj, TObject *n);
28int luaV_tostring (lua_State *L, TObject *obj); 28int luaV_tostring (lua_State *L, TObject *obj);
29const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key); 29const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key,
30 int loop);
30void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); 31void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val);
31StkId luaV_execute (lua_State *L); 32StkId luaV_execute (lua_State *L);
32void luaV_concat (lua_State *L, int total, int last); 33void luaV_concat (lua_State *L, int total, int last);