diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-05 15:27:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-07-05 15:27:39 -0300 |
commit | f8279f6cd8bf22245be30649df5a2d19d868e114 (patch) | |
tree | 46172bc8ff351275f5e1232f8eb8e842fc3b8c9e /lvm.h | |
parent | 1fe280df725810594ef9b70af663dec3ea22b2de (diff) | |
download | lua-f8279f6cd8bf22245be30649df5a2d19d868e114.tar.gz lua-f8279f6cd8bf22245be30649df5a2d19d868e114.tar.bz2 lua-f8279f6cd8bf22245be30649df5a2d19d868e114.zip |
optimizations for gettable (temporary)
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); | |||
26 | int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); | 26 | int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); |
27 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); | 27 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); |
28 | int luaV_tostring (lua_State *L, TObject *obj); | 28 | int luaV_tostring (lua_State *L, TObject *obj); |
29 | const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key); | 29 | const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key, |
30 | int loop); | ||
30 | void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); | 31 | void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); |
31 | StkId luaV_execute (lua_State *L); | 32 | StkId luaV_execute (lua_State *L); |
32 | void luaV_concat (lua_State *L, int total, int last); | 33 | void luaV_concat (lua_State *L, int total, int last); |