aboutsummaryrefslogtreecommitdiff
path: root/func.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Lua Function structuresRoberto Ierusalimschy1997-09-161-146/+0
|
* BIG CHANGE: functions have their own "constant table".Roberto Ierusalimschy1997-07-301-15/+31
|
* new way to handle global state during compilation.Roberto Ierusalimschy1997-07-291-35/+0
|
* unused field "size" in struct TFunc.Roberto Ierusalimschy1997-07-291-1/+0
|
* luaI_initTFunc initializes fileName.Roberto Ierusalimschy1997-06-191-1/+2
|
* new implementation of gc: "Pre-collect" garbage in temporary lists andRoberto Ierusalimschy1997-05-141-11/+20
| | | | then call fallbacks.
* new name for old "mem.h" (conflicts with some compiler libraries)Roberto Ierusalimschy1997-03-311-1/+1
|
* "Object" renamed to "TObject" (Tagged Object), to avoid conflicts withRoberto Ierusalimschy1997-03-311-1/+1
| | | | pre-defined names in some C compilers.
* "tag" changed to "ttype" (since now tag has other meaning)Roberto Ierusalimschy1997-03-111-2/+2
|
* "memcpy" is defined in "string.h".Roberto Ierusalimschy1996-07-241-1/+1
|
* a simplification about memory error messages.Roberto Ierusalimschy1996-03-211-2/+1
|
* better control when growing arrays.Roberto Ierusalimschy1996-03-211-5/+2
|
* unused "#include"Roberto Ierusalimschy1996-03-191-1/+1
|
* "freefunc" now is public.Roberto Ierusalimschy1996-03-141-2/+2
|
* small changes (preparing for new module of pre-compilation)Roberto Ierusalimschy1996-02-261-0/+4
|
* functions "luaI_free" and "luaI_realloc" (or macro "growvector") may beRoberto Ierusalimschy1996-02-221-12/+5
| | | | called with NULL.
* BIG CHANGE: new data structure for constants, strings and globals, usingRoberto Ierusalimschy1996-02-121-2/+2
| | | | an array of hash tables for all them.
* small bugRoberto Ierusalimschy1996-02-081-0/+2
|
* debug interface functions to manipulated local variables:Roberto Ierusalimschy1996-02-071-0/+82
| | | | "lua_getlocal" and "lua_setlocal".
* functions now may be declared with any "var" as a name;Roberto Ierusalimschy1995-10-261-0/+20
| | | | | therefore they do not have a "baptism" name. Changes in debug API to acomodate that.
* Module to manipulate function headers.Roberto Ierusalimschy1995-10-041-0/+59