2000-01-14 20:15:44 +03:00
|
|
|
/*
|
2003-12-10 15:13:36 +03:00
|
|
|
** $Id: ldebug.h,v 1.33 2003/07/16 20:49:02 roberto Exp roberto $
|
2000-01-14 20:15:44 +03:00
|
|
|
** Auxiliary functions from Debug Interface module
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ldebug_h
|
|
|
|
#define ldebug_h
|
|
|
|
|
|
|
|
|
2000-06-29 00:21:06 +04:00
|
|
|
#include "lstate.h"
|
2000-01-14 20:15:44 +03:00
|
|
|
|
|
|
|
|
2002-04-10 16:11:07 +04:00
|
|
|
#define pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1)
|
|
|
|
|
2002-05-02 17:06:20 +04:00
|
|
|
#define getline(f,pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
|
|
|
|
|
2002-11-18 14:01:55 +03:00
|
|
|
#define resethookcount(L) (L->hookcount = L->basehookcount)
|
2002-07-08 22:21:33 +04:00
|
|
|
|
|
|
|
|
2003-12-10 15:13:36 +03:00
|
|
|
void luaG_typeerror (lua_State *L, const TValue *o, const char *opname);
|
2001-06-05 22:17:01 +04:00
|
|
|
void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
|
2003-12-10 15:13:36 +03:00
|
|
|
void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2);
|
|
|
|
int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2);
|
2002-05-15 22:57:44 +04:00
|
|
|
void luaG_runerror (lua_State *L, const char *fmt, ...);
|
2002-08-09 00:08:41 +04:00
|
|
|
void luaG_errormsg (lua_State *L);
|
2001-06-05 22:17:01 +04:00
|
|
|
int luaG_checkcode (const Proto *pt);
|
2000-01-14 20:15:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|