diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-04-04 14:21:31 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-04-04 14:21:31 -0300 |
commit | 93bcb65a9ba2296818abdbfc800bbc1b9ed3b127 (patch) | |
tree | a37f298b6fc209af1cde34f78705a888b8a02713 /luadebug.h | |
parent | 49c95648a003ea75577c1292c4530cdb798eac02 (diff) | |
download | lua-93bcb65a9ba2296818abdbfc800bbc1b9ed3b127.tar.gz lua-93bcb65a9ba2296818abdbfc800bbc1b9ed3b127.tar.bz2 lua-93bcb65a9ba2296818abdbfc800bbc1b9ed3b127.zip |
debug interface uses `method' to describe calls like `a:foo()'
Diffstat (limited to 'luadebug.h')
-rw-r--r-- | luadebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luadebug.h,v 1.25 2002/03/11 12:45:00 roberto Exp roberto $ | 2 | ** $Id: luadebug.h,v 1.26 2002/03/14 16:50:06 roberto Exp roberto $ |
3 | ** Debugging API | 3 | ** Debugging API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -30,7 +30,7 @@ LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); | |||
30 | struct lua_Debug { | 30 | struct lua_Debug { |
31 | const char *event; /* `call', `return', `line' */ | 31 | const char *event; /* `call', `return', `line' */ |
32 | const char *name; /* (n) */ | 32 | const char *name; /* (n) */ |
33 | const char *namewhat; /* (n) `global', `tag method', `local', `field' */ | 33 | const char *namewhat; /* (n) `global', `local', `field', `method' */ |
34 | const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ | 34 | const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ |
35 | const char *source; /* (S) */ | 35 | const char *source; /* (S) */ |
36 | int currentline; /* (l) */ | 36 | int currentline; /* (l) */ |