diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-06-29 12:06:44 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-06-29 12:06:44 -0300 |
commit | f96497397addca22f22a6ba6eeabc906be43f16b (patch) | |
tree | af8d27b9af36dfe0b0b6e0f765ea90b95b110efc /lvm.h | |
parent | 5a1c8d8ef343bf0157851a4832c2c937b812b64f (diff) | |
download | lua-f96497397addca22f22a6ba6eeabc906be43f16b.tar.gz lua-f96497397addca22f22a6ba6eeabc906be43f16b.tar.bz2 lua-f96497397addca22f22a6ba6eeabc906be43f16b.zip |
new type 'StackValue' for stack elements
(we may want to put extra info there in the future)
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.43 2017/06/01 20:23:27 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.44 2017/06/09 19:16:41 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 | */ |
@@ -93,7 +93,7 @@ LUAI_FUNC int luaV_tointeger (const TValue *obj, lua_Integer *p, int mode); | |||
93 | LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key, | 93 | LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key, |
94 | StkId val, const TValue *slot); | 94 | StkId val, const TValue *slot); |
95 | LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key, | 95 | LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key, |
96 | StkId val, const TValue *slot); | 96 | TValue *val, const TValue *slot); |
97 | LUAI_FUNC void luaV_finishOp (lua_State *L); | 97 | LUAI_FUNC void luaV_finishOp (lua_State *L); |
98 | LUAI_FUNC void luaV_execute (lua_State *L); | 98 | LUAI_FUNC void luaV_execute (lua_State *L); |
99 | LUAI_FUNC void luaV_concat (lua_State *L, int total); | 99 | LUAI_FUNC void luaV_concat (lua_State *L, int total); |