new method to keep debug line information: current line is stored on the
Lua stack, just below (new) base, with tag LUA_T_LINE. SETLINE opcodes are generated by lex.
This commit is contained in:
3
lua.h
3
lua.h
@@ -2,7 +2,7 @@
|
||||
** LUA - Linguagem para Usuarios de Aplicacao
|
||||
** Grupo de Tecnologia em Computacao Grafica
|
||||
** TeCGraf - PUC-Rio
|
||||
** $Id: lua.h,v 3.17 1995/10/06 14:11:10 roberto Exp roberto $
|
||||
** $Id: lua.h,v 3.18 1995/10/17 14:12:45 roberto Exp roberto $
|
||||
*/
|
||||
|
||||
|
||||
@@ -26,6 +26,7 @@ typedef enum
|
||||
LUA_T_CFUNCTION= -6,
|
||||
LUA_T_MARK = -7,
|
||||
LUA_T_CMARK = -8,
|
||||
LUA_T_LINE = -9,
|
||||
LUA_T_USERDATA = 0
|
||||
} lua_Type;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user