1999-12-14 21:31:20 +03:00
|
|
|
/*
|
2000-08-10 23:50:47 +04:00
|
|
|
** $Id: ldebug.c,v 1.31 2000/08/09 19:16:57 roberto Exp roberto $
|
1999-12-14 21:31:20 +03:00
|
|
|
** Debug Interface
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2000-02-17 21:30:36 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
1999-12-14 21:31:20 +03:00
|
|
|
#include "lapi.h"
|
1999-12-29 19:31:15 +03:00
|
|
|
#include "lauxlib.h"
|
2000-06-29 00:21:06 +04:00
|
|
|
#include "lcode.h"
|
1999-12-29 19:31:15 +03:00
|
|
|
#include "ldebug.h"
|
2000-01-19 15:00:45 +03:00
|
|
|
#include "ldo.h"
|
1999-12-14 21:31:20 +03:00
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lobject.h"
|
2000-06-29 00:21:06 +04:00
|
|
|
#include "lopcodes.h"
|
1999-12-14 21:31:20 +03:00
|
|
|
#include "lstate.h"
|
|
|
|
#include "ltable.h"
|
|
|
|
#include "ltm.h"
|
|
|
|
#include "luadebug.h"
|
|
|
|
|
|
|
|
|
2000-01-19 15:00:45 +03:00
|
|
|
|
|
|
|
static void setnormalized (TObject *d, const TObject *s) {
|
2000-06-26 23:28:31 +04:00
|
|
|
switch (s->ttype) {
|
|
|
|
case TAG_CMARK: {
|
|
|
|
clvalue(d) = clvalue(s);
|
|
|
|
ttype(d) = TAG_CCLOSURE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TAG_LMARK: {
|
|
|
|
clvalue(d) = infovalue(s)->func;
|
|
|
|
ttype(d) = TAG_LCLOSURE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: *d = *s;
|
|
|
|
}
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
lua_Hook lua_setcallhook (lua_State *L, lua_Hook func) {
|
|
|
|
lua_Hook oldhook = L->callhook;
|
1999-12-14 21:31:20 +03:00
|
|
|
L->callhook = func;
|
2000-01-19 15:00:45 +03:00
|
|
|
return oldhook;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
lua_Hook lua_setlinehook (lua_State *L, lua_Hook func) {
|
|
|
|
lua_Hook oldhook = L->linehook;
|
2000-01-19 15:00:45 +03:00
|
|
|
L->linehook = func;
|
|
|
|
return oldhook;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-19 15:00:45 +03:00
|
|
|
static StkId aux_stackedfunction (lua_State *L, int level, StkId top) {
|
1999-12-14 21:31:20 +03:00
|
|
|
int i;
|
2000-08-10 23:50:47 +04:00
|
|
|
for (i = (top-1) - L->stack; i>=0; i--) {
|
1999-12-23 21:19:57 +03:00
|
|
|
if (is_T_MARK(L->stack[i].ttype)) {
|
|
|
|
if (level == 0)
|
1999-12-14 21:31:20 +03:00
|
|
|
return L->stack+i;
|
1999-12-23 21:19:57 +03:00
|
|
|
level--;
|
|
|
|
}
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
2000-01-19 15:00:45 +03:00
|
|
|
return NULL;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
|
2000-01-19 15:00:45 +03:00
|
|
|
StkId f = aux_stackedfunction(L, level, L->top);
|
|
|
|
if (f == NULL) return 0; /* there is no such level */
|
|
|
|
else {
|
|
|
|
ar->_func = f;
|
|
|
|
return 1;
|
|
|
|
}
|
1999-12-30 21:28:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-19 15:00:45 +03:00
|
|
|
static int lua_nups (StkId f) {
|
|
|
|
switch (ttype(f)) {
|
2000-06-26 23:28:31 +04:00
|
|
|
case TAG_LCLOSURE: case TAG_CCLOSURE: case TAG_CMARK:
|
2000-06-08 22:27:13 +04:00
|
|
|
return clvalue(f)->nupvalues;
|
2000-06-26 23:28:31 +04:00
|
|
|
case TAG_LMARK:
|
|
|
|
return infovalue(f)->func->nupvalues;
|
1999-12-23 21:19:57 +03:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-08 22:26:05 +04:00
|
|
|
int luaG_getline (int *lineinfo, int pc, int refline, int *prefi) {
|
|
|
|
int refi = prefi ? *prefi : 0;
|
|
|
|
if (lineinfo[refi] < 0)
|
|
|
|
refline += -lineinfo[refi++];
|
|
|
|
LUA_ASSERT(lineinfo[refi] >= 0, "invalid line info");
|
|
|
|
while (lineinfo[refi] > pc) {
|
|
|
|
refline--;
|
|
|
|
refi--;
|
|
|
|
if (lineinfo[refi] < 0)
|
|
|
|
refline -= -lineinfo[refi--];
|
|
|
|
LUA_ASSERT(lineinfo[refi] >= 0, "invalid line info");
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
int nextline = refline + 1;
|
|
|
|
int nextref = refi + 1;
|
|
|
|
if (lineinfo[nextref] < 0)
|
|
|
|
nextline += -lineinfo[nextref++];
|
|
|
|
LUA_ASSERT(lineinfo[nextref] >= 0, "invalid line info");
|
|
|
|
if (lineinfo[nextref] > pc)
|
|
|
|
break;
|
|
|
|
refline = nextline;
|
|
|
|
refi = nextref;
|
|
|
|
}
|
|
|
|
if (prefi) *prefi = refi;
|
|
|
|
return refline;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-29 00:21:06 +04:00
|
|
|
static int lua_currentpc (StkId f) {
|
|
|
|
CallInfo *ci = infovalue(f);
|
2000-06-30 18:35:17 +04:00
|
|
|
LUA_ASSERT(ttype(f) == TAG_LMARK, "function has no pc");
|
2000-06-29 00:21:06 +04:00
|
|
|
return (*ci->pc - 1) - ci->func->f.l->code;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-26 23:28:31 +04:00
|
|
|
static int lua_currentline (StkId f) {
|
|
|
|
if (ttype(f) != TAG_LMARK)
|
|
|
|
return -1; /* only active lua functions have current-line information */
|
|
|
|
else {
|
|
|
|
CallInfo *ci = infovalue(f);
|
2000-08-08 22:26:05 +04:00
|
|
|
int *lineinfo = ci->func->f.l->lineinfo;
|
2000-08-09 00:42:07 +04:00
|
|
|
return luaG_getline(lineinfo, lua_currentpc(f), 1, NULL);
|
2000-06-26 23:28:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-14 21:31:20 +03:00
|
|
|
|
2000-03-10 21:37:44 +03:00
|
|
|
static Proto *getluaproto (StkId f) {
|
2000-06-26 23:28:31 +04:00
|
|
|
return (ttype(f) == TAG_LMARK) ? infovalue(f)->func->f.l : NULL;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v) {
|
2000-01-19 15:00:45 +03:00
|
|
|
StkId f = ar->_func;
|
2000-03-10 21:37:44 +03:00
|
|
|
Proto *fp = getluaproto(f);
|
2000-01-19 15:00:45 +03:00
|
|
|
if (!fp) return 0; /* `f' is not a Lua function? */
|
2000-06-26 23:28:31 +04:00
|
|
|
v->name = luaF_getlocalname(fp, v->index, lua_currentpc(f));
|
2000-01-19 15:00:45 +03:00
|
|
|
if (!v->name) return 0;
|
2000-06-26 23:28:31 +04:00
|
|
|
v->value = luaA_putluaObject(L, (f+1)+(v->index-1));
|
2000-01-19 15:00:45 +03:00
|
|
|
return 1;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v) {
|
2000-01-19 15:00:45 +03:00
|
|
|
StkId f = ar->_func;
|
2000-03-10 21:37:44 +03:00
|
|
|
Proto *fp = getluaproto(f);
|
2000-06-26 23:28:31 +04:00
|
|
|
UNUSED(L);
|
2000-01-19 15:00:45 +03:00
|
|
|
if (!fp) return 0; /* `f' is not a Lua function? */
|
2000-06-26 23:28:31 +04:00
|
|
|
v->name = luaF_getlocalname(fp, v->index, lua_currentpc(f));
|
2000-05-15 23:30:41 +04:00
|
|
|
if (!v->name || v->name[0] == '*') return 0; /* `*' starts private locals */
|
2000-06-26 23:28:31 +04:00
|
|
|
*((f+1)+(v->index-1)) = *v->value;
|
2000-01-19 15:00:45 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-12 23:49:18 +04:00
|
|
|
static void lua_funcinfo (lua_Debug *ar, StkId func) {
|
2000-01-19 15:00:45 +03:00
|
|
|
switch (ttype(func)) {
|
2000-06-26 23:28:31 +04:00
|
|
|
case TAG_LCLOSURE:
|
2000-03-30 00:19:20 +04:00
|
|
|
ar->source = clvalue(func)->f.l->source->str;
|
|
|
|
ar->linedefined = clvalue(func)->f.l->lineDefined;
|
2000-01-19 15:00:45 +03:00
|
|
|
ar->what = "Lua";
|
|
|
|
break;
|
2000-06-26 23:28:31 +04:00
|
|
|
case TAG_LMARK:
|
|
|
|
ar->source = infovalue(func)->func->f.l->source->str;
|
|
|
|
ar->linedefined = infovalue(func)->func->f.l->lineDefined;
|
|
|
|
ar->what = "Lua";
|
|
|
|
break;
|
2000-03-31 00:55:50 +04:00
|
|
|
case TAG_CCLOSURE: case TAG_CMARK:
|
2000-01-19 15:00:45 +03:00
|
|
|
ar->source = "(C)";
|
|
|
|
ar->linedefined = -1;
|
|
|
|
ar->what = "C";
|
2000-03-30 00:19:20 +04:00
|
|
|
break;
|
|
|
|
default:
|
2000-06-30 18:35:17 +04:00
|
|
|
LUA_INTERNALERROR("invalid `func' value");
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
2000-01-19 15:00:45 +03:00
|
|
|
if (ar->linedefined == 0)
|
|
|
|
ar->what = "main";
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-08 00:21:34 +04:00
|
|
|
static const char *travtagmethods (lua_State *L, const TObject *o) {
|
|
|
|
int e;
|
|
|
|
for (e=0; e<IM_N; e++) {
|
|
|
|
int t;
|
|
|
|
for (t=0; t<=L->last_tag; t++)
|
|
|
|
if (luaO_equalObj(o, luaT_getim(L, t,e)))
|
|
|
|
return luaT_eventname[e];
|
|
|
|
}
|
|
|
|
return NULL;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-08 00:21:34 +04:00
|
|
|
static const char *travglobals (lua_State *L, const TObject *o) {
|
2000-05-08 23:32:53 +04:00
|
|
|
Hash *g = L->gt;
|
|
|
|
int i;
|
|
|
|
for (i=0; i<=g->size; i++) {
|
2000-08-08 00:21:34 +04:00
|
|
|
if (luaO_equalObj(o, val(node(g, i))) &&
|
|
|
|
ttype(key(node(g, i))) == TAG_STRING)
|
|
|
|
return tsvalue(key(node(g, i)))->str;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
2000-08-08 00:21:34 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-10 23:50:47 +04:00
|
|
|
static void lua_getname (lua_State *L, StkId f, lua_Debug *ar) {
|
2000-08-08 00:21:34 +04:00
|
|
|
TObject o;
|
|
|
|
setnormalized(&o, f);
|
|
|
|
/* try to find a name for given function */
|
|
|
|
if ((ar->name = travglobals(L, &o)) != NULL)
|
|
|
|
ar->namewhat = "global";
|
1999-12-14 21:31:20 +03:00
|
|
|
/* not found: try tag methods */
|
2000-08-08 00:21:34 +04:00
|
|
|
else if ((ar->name = travtagmethods(L, &o)) != NULL)
|
2000-01-19 15:00:45 +03:00
|
|
|
ar->namewhat = "tag-method";
|
|
|
|
else ar->namewhat = ""; /* not found at all */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
|
2000-05-12 23:49:18 +04:00
|
|
|
StkId func;
|
|
|
|
if (*what != '>')
|
|
|
|
func = ar->_func;
|
|
|
|
else {
|
|
|
|
what++; /* skip the '>' */
|
|
|
|
func = ar->func;
|
|
|
|
}
|
2000-03-03 17:58:26 +03:00
|
|
|
for (; *what; what++) {
|
2000-01-19 15:00:45 +03:00
|
|
|
switch (*what) {
|
|
|
|
case 'S':
|
2000-05-12 23:49:18 +04:00
|
|
|
lua_funcinfo(ar, func);
|
2000-01-19 15:00:45 +03:00
|
|
|
break;
|
|
|
|
case 'l':
|
2000-06-26 23:28:31 +04:00
|
|
|
ar->currentline = lua_currentline(func);
|
2000-01-19 15:00:45 +03:00
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
ar->nups = lua_nups(func);
|
|
|
|
break;
|
|
|
|
case 'n':
|
2000-08-10 23:50:47 +04:00
|
|
|
lua_getname(L, func, ar);
|
2000-01-19 15:00:45 +03:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
setnormalized(L->top, func);
|
|
|
|
incr_top;
|
2000-05-09 00:49:05 +04:00
|
|
|
ar->func = lua_pop(L);
|
2000-01-19 15:00:45 +03:00
|
|
|
break;
|
|
|
|
default: return 0; /* invalid option */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
1999-12-14 21:31:20 +03:00
|
|
|
}
|
|
|
|
|
2000-01-19 15:00:45 +03:00
|
|
|
|
2000-06-29 00:21:06 +04:00
|
|
|
/*
|
|
|
|
** {======================================================
|
|
|
|
** Symbolic Execution
|
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
2000-08-10 23:50:47 +04:00
|
|
|
|
|
|
|
static int pushpc (int *stack, int pc, int top, int n) {
|
|
|
|
while (n--)
|
|
|
|
stack[top++] = pc-1;
|
|
|
|
return top;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-29 00:21:06 +04:00
|
|
|
static Instruction luaG_symbexec (const Proto *pt, int lastpc, int stackpos) {
|
2000-08-10 23:50:47 +04:00
|
|
|
int stack[MAXSTACK]; /* stores last instruction that changed a stack entry */
|
2000-06-29 00:21:06 +04:00
|
|
|
const Instruction *code = pt->code;
|
|
|
|
int top = pt->numparams;
|
|
|
|
int pc = 0;
|
|
|
|
if (pt->is_vararg) /* varargs? */
|
|
|
|
top++; /* `arg' */
|
|
|
|
while (pc < lastpc) {
|
|
|
|
const Instruction i = code[pc++];
|
2000-08-10 23:50:47 +04:00
|
|
|
LUA_ASSERT(0 <= top && top <= pt->maxstacksize, "wrong stack");
|
2000-06-29 00:21:06 +04:00
|
|
|
switch (GET_OPCODE(i)) {
|
2000-06-30 18:29:35 +04:00
|
|
|
case OP_RETURN: {
|
2000-06-30 18:35:17 +04:00
|
|
|
LUA_ASSERT(top >= GETARG_U(i), "wrong stack");
|
2000-06-30 18:29:35 +04:00
|
|
|
top = GETARG_U(i);
|
|
|
|
break;
|
|
|
|
}
|
2000-06-29 00:21:06 +04:00
|
|
|
case OP_CALL: {
|
|
|
|
int nresults = GETARG_B(i);
|
|
|
|
if (nresults == MULT_RET) nresults = 1;
|
2000-06-30 18:35:17 +04:00
|
|
|
LUA_ASSERT(top >= GETARG_A(i), "wrong stack");
|
2000-08-10 23:50:47 +04:00
|
|
|
top = pushpc(stack, pc, GETARG_A(i), nresults);
|
2000-06-29 00:21:06 +04:00
|
|
|
break;
|
|
|
|
}
|
2000-06-30 18:29:35 +04:00
|
|
|
case OP_TAILCALL: {
|
2000-06-30 18:35:17 +04:00
|
|
|
LUA_ASSERT(top >= GETARG_A(i), "wrong stack");
|
2000-06-30 18:29:35 +04:00
|
|
|
top = GETARG_B(i);
|
|
|
|
break;
|
|
|
|
}
|
2000-06-29 00:21:06 +04:00
|
|
|
case OP_PUSHNIL: {
|
2000-08-10 23:50:47 +04:00
|
|
|
top = pushpc(stack, pc, top, GETARG_U(i));
|
2000-06-29 00:21:06 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_POP: {
|
|
|
|
top -= GETARG_U(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_SETTABLE:
|
|
|
|
case OP_SETLIST: {
|
|
|
|
top -= GETARG_B(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_SETMAP: {
|
|
|
|
top -= 2*GETARG_U(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_CONCAT: {
|
|
|
|
top -= GETARG_U(i);
|
|
|
|
stack[top++] = pc-1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_CLOSURE: {
|
|
|
|
top -= GETARG_B(i);
|
|
|
|
stack[top++] = pc-1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2000-08-10 23:50:47 +04:00
|
|
|
OpCode op = GET_OPCODE(i);
|
|
|
|
LUA_ASSERT(luaK_opproperties[op].push != VD,
|
2000-06-29 00:21:06 +04:00
|
|
|
"invalid opcode for default");
|
2000-08-10 23:50:47 +04:00
|
|
|
top -= luaK_opproperties[op].pop;
|
2000-06-30 18:35:17 +04:00
|
|
|
LUA_ASSERT(top >= 0, "wrong stack");
|
2000-08-10 23:50:47 +04:00
|
|
|
top = pushpc(stack, pc, top, luaK_opproperties[op].push);
|
|
|
|
if (ISJUMP(op)) {
|
|
|
|
int newpc = pc + GETARG_S(i);
|
|
|
|
/* jump is forward and do not skip `lastpc'? */
|
|
|
|
if (pc < newpc && newpc <= lastpc) {
|
|
|
|
if (op == OP_JMPONT || op == OP_JMPONF)
|
|
|
|
stack[top++] = pc-1; /* do not pop when jumping */
|
|
|
|
pc = newpc; /* do the jump */
|
|
|
|
}
|
|
|
|
}
|
2000-06-29 00:21:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return code[stack[stackpos]];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-10 23:50:47 +04:00
|
|
|
static const char *getobjname (lua_State *L, StkId obj, const char **name) {
|
2000-06-29 00:21:06 +04:00
|
|
|
StkId func = aux_stackedfunction(L, 0, obj);
|
|
|
|
if (func == NULL || ttype(func) != TAG_LMARK)
|
|
|
|
return NULL; /* not a Lua function */
|
|
|
|
else {
|
|
|
|
Proto *p = infovalue(func)->func->f.l;
|
|
|
|
int pc = lua_currentpc(func);
|
|
|
|
int stackpos = obj - (func+1); /* func+1 == function base */
|
|
|
|
Instruction i = luaG_symbexec(p, pc, stackpos);
|
|
|
|
switch (GET_OPCODE(i)) {
|
|
|
|
case OP_GETGLOBAL: {
|
|
|
|
*name = p->kstr[GETARG_U(i)]->str;
|
|
|
|
return "global";
|
|
|
|
}
|
|
|
|
case OP_GETLOCAL: {
|
|
|
|
*name = luaF_getlocalname(p, GETARG_U(i)+1, pc);
|
2000-08-09 00:42:07 +04:00
|
|
|
LUA_ASSERT(*name, "local must exist");
|
|
|
|
return "local";
|
2000-06-29 00:21:06 +04:00
|
|
|
}
|
|
|
|
case OP_PUSHSELF:
|
|
|
|
case OP_GETDOTTED: {
|
|
|
|
*name = p->kstr[GETARG_U(i)]->str;
|
|
|
|
return "field";
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return NULL; /* no usefull name found */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* }====================================================== */
|
|
|
|
|
2000-01-19 15:00:45 +03:00
|
|
|
|
2000-08-10 23:50:47 +04:00
|
|
|
void luaG_typeerror (lua_State *L, StkId o, const char *op) {
|
2000-06-29 00:21:06 +04:00
|
|
|
const char *name;
|
2000-08-10 23:50:47 +04:00
|
|
|
const char *kind = getobjname(L, o, &name);
|
|
|
|
const char *t = lua_type(L, o);
|
2000-06-29 00:21:06 +04:00
|
|
|
if (kind)
|
2000-08-10 23:50:47 +04:00
|
|
|
luaL_verror(L, "attempt to %.30s %.20s `%.40s' (a %.10s value)",
|
|
|
|
op, kind, name, t);
|
2000-06-29 00:21:06 +04:00
|
|
|
else
|
2000-08-10 23:50:47 +04:00
|
|
|
luaL_verror(L, "attempt to %.30s a %.10s value", op, t);
|
1999-12-29 19:31:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-10 23:50:47 +04:00
|
|
|
void luaG_binerror (lua_State *L, StkId p1, lua_Type t, const char *op) {
|
|
|
|
if (ttype(p1) == t) p1++;
|
|
|
|
LUA_ASSERT(ttype(p1) != t, "must be an error");
|
|
|
|
luaG_typeerror(L, p1, op);
|
1999-12-29 19:31:15 +03:00
|
|
|
}
|
2000-08-09 00:42:07 +04:00
|
|
|
|