mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
Vararg table
Not yet optimized nor documented.
This commit is contained in:
parent
9ea06e61f2
commit
140b672e2e
9 changed files with 80 additions and 31 deletions
|
|
@ -583,8 +583,10 @@ typedef struct AbsLineInfo {
|
|||
/*
|
||||
** Flags in Prototypes
|
||||
*/
|
||||
#define PF_ISVARARG 1
|
||||
#define PF_FIXED 2 /* prototype has parts in fixed memory */
|
||||
#define PF_ISVARARG 1 /* function is vararg */
|
||||
#define PF_VATAB 2 /* function is vararg with table */
|
||||
#define PF_VAPTAB 4 /* function is vararg with pseudo-table */
|
||||
#define PF_FIXED 8 /* prototype has parts in fixed memory */
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue