Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | OP_TFORLOOP uses extra stack space | Roberto Ierusalimschy | 2002-12-11 | 1 | -1/+2 |
* | bug: scope of generic for variables is not sound | Roberto Ierusalimschy | 2002-12-06 | 1 | -26/+26 |
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
* | make more clear "primitive" recursive definitions | Roberto Ierusalimschy | 2002-11-22 | 1 | -106/+100 |
* | avoid C stack overflow during parsing | Roberto Ierusalimschy | 2002-11-22 | 1 | -2/+13 |
* | detail | Roberto Ierusalimschy | 2002-11-22 | 1 | -2/+2 |
* | in case of memory allocation errors, sizecode and sizelineinfo can | Roberto Ierusalimschy | 2002-10-16 | 1 | -2/+3 |
* | use of different buffers for scanner and concatenation | Roberto Ierusalimschy | 2002-10-08 | 1 | -2/+3 |
* | new structure for collectable objects, sharing a common header | Roberto Ierusalimschy | 2002-08-30 | 1 | -4/+1 |
* | better line number for function definitions | Roberto Ierusalimschy | 2002-08-22 | 1 | -1/+2 |
* | new simetric format for ABC instructions, to avoid exchanging operands | Roberto Ierusalimschy | 2002-08-20 | 1 | -5/+5 |
* | new implementation for tailcall | Roberto Ierusalimschy | 2002-08-05 | 1 | -3/+3 |
* | new priority for and/or | Roberto Ierusalimschy | 2002-07-04 | 1 | -7/+7 |
* | details | Roberto Ierusalimschy | 2002-06-26 | 1 | -2/+2 |
* | new "local function" | Roberto Ierusalimschy | 2002-06-06 | 1 | -26/+32 |
* | some refactoring | Roberto Ierusalimschy | 2002-06-06 | 1 | -20/+18 |
* | details | Roberto Ierusalimschy | 2002-06-06 | 1 | -10/+10 |
* | no more use of stdio inside the core (except for `tostring'...) | Roberto Ierusalimschy | 2002-06-03 | 1 | -3/+2 |
* | new names for string formating functions | Roberto Ierusalimschy | 2002-05-16 | 1 | -3/+3 |
* | no more `global' declarations | Roberto Ierusalimschy | 2002-05-14 | 1 | -136/+44 |
* | generic for also coded to make test at the end of the loop | Roberto Ierusalimschy | 2002-05-13 | 1 | -14/+20 |
* | cleaner implementation of code generation for jumps | Roberto Ierusalimschy | 2002-05-10 | 1 | -12/+14 |
* | optimization for `while' (first version) | Roberto Ierusalimschy | 2002-05-10 | 1 | -4/+43 |
* | new function `lua_vpushstr' to replace uses of `sprintf' | Roberto Ierusalimschy | 2002-05-07 | 1 | -21/+16 |
* | avoid names that differ only in capitalization | Roberto Ierusalimschy | 2002-04-24 | 1 | -9/+9 |
* | bug: 'local a,b; a,b = 1,f()' did not close f() | Roberto Ierusalimschy | 2002-04-22 | 1 | -1/+2 |
* | error in calls signalled in first line (instead of last) | Roberto Ierusalimschy | 2002-04-10 | 1 | -2/+3 |
* | new semantics for `generic for' (with state) | Roberto Ierusalimschy | 2002-04-09 | 1 | -11/+13 |
* | bug: end of block may not be end of stat | Roberto Ierusalimschy | 2002-04-02 | 1 | -1/+2 |
* | simpler implementation for line information | Roberto Ierusalimschy | 2002-03-25 | 1 | -10/+8 |
* | first implementation for tail call | Roberto Ierusalimschy | 2002-03-21 | 1 | -1/+5 |
* | special treatment for 'global in nil' | Roberto Ierusalimschy | 2002-03-18 | 1 | -20/+26 |
* | small optimization when returning a single local value | Roberto Ierusalimschy | 2002-03-14 | 1 | -7/+9 |
* | implementation of `global' statement | Roberto Ierusalimschy | 2002-03-14 | 1 | -82/+187 |
* | generic for (with any number of control variables) | Roberto Ierusalimschy | 2002-03-08 | 1 | -40/+44 |
* | new constructor syntax + new generic `for' | Roberto Ierusalimschy | 2002-02-14 | 1 | -133/+100 |
* | simpler implementation for `for' loops | Roberto Ierusalimschy | 2002-02-05 | 1 | -6/+9 |
* | OP_LOADINT can be done by OP_LOADK | Roberto Ierusalimschy | 2002-01-25 | 1 | -19/+18 |
* | first implementation of coroutines | Roberto Ierusalimschy | 2002-01-09 | 1 | -5/+5 |
* | some warnings | Roberto Ierusalimschy | 2001-12-21 | 1 | -1/+1 |
* | new type `boolean' | Roberto Ierusalimschy | 2001-12-11 | 1 | -1/+11 |
* | no more explicit support for wide-chars; too much troble... | Roberto Ierusalimschy | 2001-11-28 | 1 | -84/+83 |
* | optimization for array part of a Table | Roberto Ierusalimschy | 2001-10-25 | 1 | -15/+21 |
* | details | Roberto Ierusalimschy | 2001-10-02 | 1 | -1/+1 |
* | small bug in close x return | Roberto Ierusalimschy | 2001-09-28 | 1 | -7/+7 |
* | restricted syntax for function call/table accesses prefixes | Roberto Ierusalimschy | 2001-09-25 | 1 | -42/+55 |
* | first implementation of unrestricted static scoping | Roberto Ierusalimschy | 2001-09-07 | 1 | -78/+69 |
* | better syntax for type casts | Roberto Ierusalimschy | 2001-08-31 | 1 | -4/+4 |
* | use a table to find (and reuse) constants when parsing | Roberto Ierusalimschy | 2001-08-27 | 1 | -1/+5 |
* | the parser is not LL(1) | Roberto Ierusalimschy | 2001-08-10 | 1 | -2/+2 |