new API function and built-in "lua_copytagmethods"

This commit is contained in:
Roberto Ierusalimschy
1997-12-11 15:21:11 -02:00
parent cdd261f332
commit 4daae2165d
3 changed files with 26 additions and 4 deletions

16
ltm.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: ltm.c,v 1.9 1997/11/19 18:16:33 roberto Exp roberto $
** $Id: ltm.c,v 1.10 1997/12/11 14:48:46 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -46,7 +46,7 @@ static char validevents[NUM_TAGS][IM_N] = { /* ORDER LUA_T, ORDER IM */
};
static int validevent (lua_Type t, int e)
static int validevent (int t, int e)
{ /* ORDER LUA_T */
return (t < LUA_T_NIL) ? 1 : validevents[-t][e];
}
@@ -95,6 +95,18 @@ void luaT_realtag (int tag)
}
int lua_copytagmethods (int tagto, int tagfrom)
{
int e;
checktag(tagto);
checktag(tagfrom);
for (e=0; e<IM_N; e++) {
if (validevent(tagto, e))
*luaT_getim(tagto, e) = *luaT_getim(tagfrom, e);
}
return tagto;
}
int luaT_efectivetag (TObject *o)
{