mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
new type 'StackValue' for stack elements
(we may want to put extra info there in the future)
This commit is contained in:
parent
5a1c8d8ef3
commit
f96497397a
20 changed files with 409 additions and 351 deletions
4
lvm.h
4
lvm.h
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
** $Id: lvm.h,v 2.43 2017/06/01 20:23:27 roberto Exp roberto $
|
||||
** $Id: lvm.h,v 2.44 2017/06/09 19:16:41 roberto Exp roberto $
|
||||
** Lua virtual machine
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
|
@ -93,7 +93,7 @@ LUAI_FUNC int luaV_tointeger (const TValue *obj, lua_Integer *p, int mode);
|
|||
LUAI_FUNC void luaV_finishget (lua_State *L, const TValue *t, TValue *key,
|
||||
StkId val, const TValue *slot);
|
||||
LUAI_FUNC void luaV_finishset (lua_State *L, const TValue *t, TValue *key,
|
||||
StkId val, const TValue *slot);
|
||||
TValue *val, const TValue *slot);
|
||||
LUAI_FUNC void luaV_finishOp (lua_State *L);
|
||||
LUAI_FUNC void luaV_execute (lua_State *L);
|
||||
LUAI_FUNC void luaV_concat (lua_State *L, int total);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue