diff options
| author | Roberto I <roberto@inf.puc-rio.br> | 2025-09-17 16:07:48 -0300 |
|---|---|---|
| committer | Roberto I <roberto@inf.puc-rio.br> | 2025-09-17 16:07:48 -0300 |
| commit | 8fb1af0e33cd8688f57cd0e3ab86420a8cfe99bd (patch) | |
| tree | 2c199de5e67f395a4f9c94fcfb2ef3f0dad8882a /lobject.h | |
| parent | 140b672e2ee2ac842661ece4b48e1a64f0cd11ea (diff) | |
| download | lua-8fb1af0e33cd8688f57cd0e3ab86420a8cfe99bd.tar.gz lua-8fb1af0e33cd8688f57cd0e3ab86420a8cfe99bd.tar.bz2 lua-8fb1af0e33cd8688f57cd0e3ab86420a8cfe99bd.zip | |
Varag parameter is a new kind of variable
To allow some optimizations on its use.
Diffstat (limited to 'lobject.h')
| -rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -584,8 +584,8 @@ typedef struct AbsLineInfo { | |||
| 584 | ** Flags in Prototypes | 584 | ** Flags in Prototypes |
| 585 | */ | 585 | */ |
| 586 | #define PF_ISVARARG 1 /* function is vararg */ | 586 | #define PF_ISVARARG 1 /* function is vararg */ |
| 587 | #define PF_VATAB 2 /* function is vararg with table */ | 587 | #define PF_VAVAR 2 /* function has vararg parameter */ |
| 588 | #define PF_VAPTAB 4 /* function is vararg with pseudo-table */ | 588 | #define PF_VATAB 4 /* function has vararg table */ |
| 589 | #define PF_FIXED 8 /* prototype has parts in fixed memory */ | 589 | #define PF_FIXED 8 /* prototype has parts in fixed memory */ |
| 590 | 590 | ||
| 591 | 591 | ||
