Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | renaming of some opcodes and fields | Roberto Ierusalimschy | 2000-01-28 | 1 | -29/+29 | |
| | ||||||
* | performance details. | Roberto Ierusalimschy | 2000-01-25 | 1 | -40/+47 | |
| | ||||||
* | `const' array in protos breaked in 3 arrays (for strings, numbers, and | Roberto Ierusalimschy | 2000-01-25 | 1 | -48/+35 | |
| | | | | prototypes). | |||||
* | `exp' is "reserved word" in Visual-C++ ;-) | Roberto Ierusalimschy | 2000-01-12 | 1 | -10/+10 | |
| | ||||||
* | details (error messages) | Roberto Ierusalimschy | 2000-01-10 | 1 | -5/+5 | |
| | ||||||
* | bug: return gives wrong line in debug information. | Roberto Ierusalimschy | 1999-12-29 | 1 | -2/+3 | |
| | ||||||
* | first version of extra debug information (NAME) | Roberto Ierusalimschy | 1999-12-29 | 1 | -486/+549 | |
| | ||||||
* | new ttypes to distinguish between C closures and Lua closures. | Roberto Ierusalimschy | 1999-12-23 | 1 | -3/+3 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-12-22 | 1 | -3/+5 | |
| | ||||||
* | debug information for parameters use line 0 for them (as they are | Roberto Ierusalimschy | 1999-12-21 | 1 | -15/+12 | |
| | | | | always visible). | |||||
* | luaS_newfixedstring renamed to luaS_newfixed | Roberto Ierusalimschy | 1999-12-14 | 1 | -3/+3 | |
| | ||||||
* | for the future... | Roberto Ierusalimschy | 1999-12-07 | 1 | -3/+3 | |
| | ||||||
* | fixed stack; first version. | Roberto Ierusalimschy | 1999-12-01 | 1 | -4/+4 | |
| | ||||||
* | new way to code CALLs + passing multiple arguments between function calls | Roberto Ierusalimschy | 1999-11-25 | 1 | -10/+7 | |
| | ||||||
* | first implementation of multiple states (reentrant code). | Roberto Ierusalimschy | 1999-11-22 | 1 | -56/+61 | |
| | ||||||
* | new implementation for global variable values (separated from strings) | Roberto Ierusalimschy | 1999-11-04 | 1 | -1/+10 | |
| | ||||||
* | reorganization of `stat' function. | Roberto Ierusalimschy | 1999-09-20 | 1 | -76/+96 | |
| | ||||||
* | bug: in the (old) expression << ls->fs->f->consts[checkname(ls)] >>, checkname | Roberto Ierusalimschy | 1999-09-02 | 1 | -14/+15 | |
| | | | | could realloc f->consts. | |||||
* | "const" !!! | Roberto Ierusalimschy | 1999-08-16 | 1 | -12/+13 | |
| | ||||||
* | details | Roberto Ierusalimschy | 1999-07-22 | 1 | -4/+4 | |
| | ||||||
* | better treatment for arbitrary limits | Roberto Ierusalimschy | 1999-06-17 | 1 | -19/+31 | |
| | ||||||
* | cannot assign to unlimited variables, because it causes overflow in | Roberto Ierusalimschy | 1999-06-16 | 1 | -1/+9 | |
| | | | | the number of returns of a function. | |||||
* | bigger limit for number of local variables and upvalues | Roberto Ierusalimschy | 1999-06-16 | 1 | -11/+13 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 1999-05-21 | 1 | -2/+3 | |
| | ||||||
* | warnings by clinio | Roberto Ierusalimschy | 1999-05-10 | 1 | -5/+5 | |
| | ||||||
* | opcodes with LONGARG do not use byte variants. | Roberto Ierusalimschy | 1999-05-06 | 1 | -11/+12 | |
| | ||||||
* | do not generate SETLINE after main (it will be after last line) | Roberto Ierusalimschy | 1999-03-25 | 1 | -2/+1 | |
| | ||||||
* | more precise debug information about local variables | Roberto Ierusalimschy | 1999-03-23 | 1 | -4/+16 | |
| | ||||||
* | no more if expressions. | Roberto Ierusalimschy | 1999-03-11 | 1 | -23/+8 | |
| | ||||||
* | no more assignment expressions (they don't fit in Lua...) | Roberto Ierusalimschy | 1999-03-10 | 1 | -35/+16 | |
| | ||||||
* | new opcode TAILCALL | Roberto Ierusalimschy | 1999-03-05 | 1 | -10/+13 | |
| | ||||||
* | storing chunk "sources" instead of "filenames". | Roberto Ierusalimschy | 1999-03-04 | 1 | -5/+5 | |
| | ||||||
* | macros "growvector" and "reallocvector" more compact | Roberto Ierusalimschy | 1999-02-26 | 1 | -8/+7 | |
| | ||||||
* | details (from lhf) | Roberto Ierusalimschy | 1999-02-25 | 1 | -2/+2 | |
| | ||||||
* | new way to handle "growing" vectors | Roberto Ierusalimschy | 1999-02-25 | 1 | -22/+9 | |
| | ||||||
* | better instrumentation for internal debugging | Roberto Ierusalimschy | 1999-02-24 | 1 | -1/+5 | |
| | ||||||
* | warnings | Roberto Ierusalimschy | 1999-02-24 | 1 | -5/+5 | |
| | ||||||
* | new name for opcode | Roberto Ierusalimschy | 1999-02-09 | 1 | -2/+2 | |
| | ||||||
* | small corrections in opcodes. | Roberto Ierusalimschy | 1999-02-09 | 1 | -5/+8 | |
| | ||||||
* | assignment expression may be multiple | Roberto Ierusalimschy | 1999-02-08 | 1 | -23/+22 | |
| | ||||||
* | clearer way to set tables. | Roberto Ierusalimschy | 1999-02-08 | 1 | -3/+3 | |
| | ||||||
* | "lua_debug", "lua_callhook" and "lua_linehook" must be inside "lua_state". | Roberto Ierusalimschy | 1999-02-04 | 1 | -3/+3 | |
| | ||||||
* | new opcode for "long" arguments (3 bytes) | Roberto Ierusalimschy | 1999-02-04 | 1 | -95/+101 | |
| | ||||||
* | new syntax: assignment expressions + better order for opcodes | Roberto Ierusalimschy | 1999-02-02 | 1 | -13/+41 | |
| | ||||||
* | opcodes with builtin parameters are too complicated for very little extra | Roberto Ierusalimschy | 1999-02-02 | 1 | -48/+38 | |
| | | | | performance. | |||||
* | "if" expression leaves only one of its expressions on the stack | Roberto Ierusalimschy | 1999-02-02 | 1 | -2/+5 | |
| | ||||||
* | "if" expressions. | Roberto Ierusalimschy | 1999-02-01 | 1 | -24/+31 | |
| | ||||||
* | negative numerals do not need a MINUSOPeration; go directly to contant | Roberto Ierusalimschy | 1999-01-29 | 1 | -44/+51 | |
| | | | | table. | |||||
* | <string.h> is needed because of "memcpy". | Roberto Ierusalimschy | 1999-01-21 | 1 | -1/+2 | |
| | ||||||
* | GC can be called during parsing, if needed. | Roberto Ierusalimschy | 1999-01-15 | 1 | -19/+32 | |
| |