diff options
author | 2011-01-17 15:50:06 -0500 | |
---|---|---|
committer | 2011-01-17 15:50:06 -0500 | |
commit | d196ce1c86c27e0b07b2ee537da07e362f44e784 (patch) | |
tree | 4b3e7cdadc82657d7d3a2aaef2b69beabfc5299c /modules/lua/api/debug.luadoc | |
parent | 5b3d39a6ac36e344ae95666b6b60f3ee1d4e1057 (diff) | |
download | textadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.tar.gz textadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.zip |
Added Adeptsense.
Diffstat (limited to 'modules/lua/api/debug.luadoc')
-rw-r--r-- | modules/lua/api/debug.luadoc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/lua/api/debug.luadoc b/modules/lua/api/debug.luadoc deleted file mode 100644 index fb7c83f3..00000000 --- a/modules/lua/api/debug.luadoc +++ /dev/null @@ -1,18 +0,0 @@ ---- Enters interactive debug mode, line with only "cont" terminates. -function debug() ---- Returns current hook function, hook mask, hook count. -function gethook() ---- Returns table with information about a function. -function getinfo(function [, what]) ---- Returns name and value of local variable with index local at stack level. -function getlocal(level, local) ---- Returns name and value of upvalue with index up of function func. -function getupvalue(func, up) ---- Sets given function as a hook, mask="[crl]". -function sethook(hook, mask [, count]) ---- Sets local variable with index local at stack level with value. -function setlocal(level, local, value) ---- Sets upvalue with index up of function func with value. -function setupvalue(func, up, value) ---- Returns a string with a traceback of the call stack. -function traceback([message]) |