diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-02-17 17:29:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-02-17 17:29:29 -0200 |
commit | 422318f6777d8d3bac13ade797d9c8eaa38686b6 (patch) | |
tree | 5cfabc21fcebb714daf237bff783fe9630e70582 /lua.h | |
parent | 49dae52d0808776f5861eb33efa1d13b05e44512 (diff) | |
download | lua-422318f6777d8d3bac13ade797d9c8eaa38686b6.tar.gz lua-422318f6777d8d3bac13ade797d9c8eaa38686b6.tar.bz2 lua-422318f6777d8d3bac13ade797d9c8eaa38686b6.zip |
two new fields 'fTransfer'/'nTransfer' in 'lua_Debug' structure
(for information about values being given and returned in function calls)
Diffstat (limited to '')
-rw-r--r-- | lua.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.337 2017/11/02 11:28:56 roberto Exp $ | 2 | ** $Id: lua.h,v 1.339 2017/11/07 13:25:26 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -452,6 +452,8 @@ struct lua_Debug { | |||
452 | int lastlinedefined; /* (S) */ | 452 | int lastlinedefined; /* (S) */ |
453 | unsigned char nups; /* (u) number of upvalues */ | 453 | unsigned char nups; /* (u) number of upvalues */ |
454 | unsigned char nparams;/* (u) number of parameters */ | 454 | unsigned char nparams;/* (u) number of parameters */ |
455 | unsigned char fTransfer;/* (r) index of first value transfered */ | ||
456 | unsigned char nTransfer; /* (r) number of transfered values */ | ||
455 | char isvararg; /* (u) */ | 457 | char isvararg; /* (u) */ |
456 | char istailcall; /* (t) */ | 458 | char istailcall; /* (t) */ |
457 | char short_src[LUA_IDSIZE]; /* (S) */ | 459 | char short_src[LUA_IDSIZE]; /* (S) */ |