| Commit message (Expand) | Author | Age | Files | Lines |
* | better line numbers for function calls and unary/binary operators + | Roberto Ierusalimschy | 2010-04-17 | 1 | -9/+12 |
* | no need to keep "_ENV" name in global state (can be kept in lex state) | Roberto Ierusalimschy | 2010-04-05 | 1 | -5/+5 |
* | new macro 'eqstr' | Roberto Ierusalimschy | 2010-04-05 | 1 | -3/+3 |
* | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 2010-03-13 | 1 | -6/+3 |
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -37/+10 |
* | first step towards _ENV: all chunks have an puvalues _ENV with the | Roberto Ierusalimschy | 2010-03-08 | 1 | -11/+24 |
* | when searching for a variable name, look existing upvalues before | Roberto Ierusalimschy | 2010-03-04 | 1 | -20/+32 |
* | new instructions to optimize indexing on upvalues | Roberto Ierusalimschy | 2010-02-26 | 1 | -9/+14 |
* | again changing macro to function to save a few bytes | Roberto Ierusalimschy | 2010-01-06 | 1 | -5/+9 |
* | macro 'luaY_checklimit' changed into a function (and renamed 'checklimit'). | Roberto Ierusalimschy | 2010-01-05 | 1 | -10/+12 |
* | comment typos | Roberto Ierusalimschy | 2009-11-26 | 1 | -2/+2 |
* | parser/scanner keep GC running | Roberto Ierusalimschy | 2009-11-17 | 1 | -9/+11 |
* | better documentation for constructor syntax | Roberto Ierusalimschy | 2009-10-14 | 1 | -26/+34 |
* | local function definition does not need to correct debug information | Roberto Ierusalimschy | 2009-10-13 | 1 | -3/+1 |
* | parser keeps list of active local variables in a single dynamic array, | Roberto Ierusalimschy | 2009-10-11 | 1 | -28/+52 |
* | first implementation of lexical environments | Roberto Ierusalimschy | 2009-09-30 | 1 | -15/+47 |
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -21/+18 |
* | detail (space between function name and its parameter list) | Roberto Ierusalimschy | 2009-09-23 | 1 | -2/+2 |
* | test for 'fs' being NULL at the end of 'close_func' is useless ('fs' | Roberto Ierusalimschy | 2009-08-10 | 1 | -2/+4 |
* | small optimization (reorder of BinOpr enum to unify some cases | Roberto Ierusalimschy | 2009-06-18 | 1 | -5/+5 |
* | new function 'luaK_codek' (detail) | Roberto Ierusalimschy | 2009-06-10 | 1 | -2/+2 |
* | no more code checking | Roberto Ierusalimschy | 2009-04-30 | 1 | -2/+1 |
* | no more support for old-style varargs | Roberto Ierusalimschy | 2009-03-26 | 1 | -10/+4 |
* | generic for coded as two dedicated instructions to simplify resumption | Roberto Ierusalimschy | 2008-10-30 | 1 | -8/+7 |
* | some cleaning | Roberto Ierusalimschy | 2008-10-28 | 1 | -9/+15 |
* | added structure for local-variable information to allow extra | Roberto Ierusalimschy | 2008-05-08 | 1 | -3/+4 |
* | corrected error message ("too many constants" -> "too many functions") | Roberto Ierusalimschy | 2008-04-02 | 1 | -2/+2 |
* | parser should not call 'luaX_lexerror' | Roberto Ierusalimschy | 2007-10-25 | 1 | -2/+2 |
* | detail | Roberto Ierusalimschy | 2007-10-18 | 1 | -5/+4 |
* | BUG: too many variables in an assignment may cause a C stack overflow | Roberto Ierusalimschy | 2007-07-31 | 1 | -3/+5 |
* | details | Roberto Ierusalimschy | 2007-05-11 | 1 | -3/+2 |
* | no more optimization to avoid LOADNIL at function start | Roberto Ierusalimschy | 2007-03-27 | 1 | -2/+2 |
* | more regularity in the use of quotes in error messages | Roberto Ierusalimschy | 2007-02-07 | 1 | -4/+4 |
* | comments | Roberto Ierusalimschy | 2006-11-22 | 1 | -2/+2 |
* | error message | Roberto Ierusalimschy | 2006-10-24 | 1 | -5/+7 |
* | details | Roberto Ierusalimschy | 2006-09-14 | 1 | -4/+4 |
* | little better error messages for internal arrays overflows | Roberto Ierusalimschy | 2006-09-14 | 1 | -3/+3 |
* | BUG: there is only one C stack, so nCcalls must be global | Roberto Ierusalimschy | 2006-08-15 | 1 | -5/+6 |
* | bug: wrong limit for list constructors | Roberto Ierusalimschy | 2006-07-12 | 1 | -2/+2 |
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -10/+16 |
* | details | Roberto Ierusalimschy | 2006-06-22 | 1 | -3/+3 |
* | details | Roberto Ierusalimschy | 2006-06-05 | 1 | -5/+6 |
* | 'lparser.h' should not include 'ltable.h' | Roberto Ierusalimschy | 2006-03-09 | 1 | -2/+2 |
* | small changes in casts | Roberto Ierusalimschy | 2005-12-22 | 1 | -5/+5 |
* | details | Roberto Ierusalimschy | 2005-12-07 | 1 | -45/+27 |
* | VC warnings | Roberto Ierusalimschy | 2005-10-24 | 1 | -2/+2 |
* | numeral expressions keep their values in struct 'expdesc' | Roberto Ierusalimschy | 2005-10-03 | 1 | -19/+20 |
* | (no commit message) | Roberto Ierusalimschy | 2005-09-30 | 1 | -2/+2 |
* | new method to handle tests without values (negative values) | Roberto Ierusalimschy | 2005-08-29 | 1 | -4/+3 |
* | no more compatibility for {;} and similar syntax | Roberto Ierusalimschy | 2005-08-24 | 1 | -2/+1 |