aboutsummaryrefslogtreecommitdiff
path: root/lparser.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* commentRoberto Ierusalimschy2005-04-291-2/+2
* commentRoberto Ierusalimschy2005-04-271-3/+3
* C stack is the same for the parser and the interpreter, so depthRoberto Ierusalimschy2005-04-071-7/+10
* new operation *t (for size of t) (may yet be removed...)Roberto Ierusalimschy2005-03-161-1/+2
* `luac´ -> `luai' (to avoid confusion with other luac stuff)Roberto Ierusalimschy2005-03-091-6/+6
* `luaconf.h´ exports all its definitions always (so all of themRoberto Ierusalimschy2005-03-081-6/+6
* entries `{[...] = ...}' need space too.Roberto Ierusalimschy2005-03-081-2/+2
* new `mod' (`%') operatorRoberto Ierusalimschy2005-03-081-3/+4
* USHRT_MAX may not fit in a (16-bit) intRoberto Ierusalimschy2005-03-071-2/+2
* change in hash algorithm so that it does not need empty slotRoberto Ierusalimschy2005-01-051-2/+2
* cleaner interface to `ltable'Roberto Ierusalimschy2005-01-041-2/+2
* detailsRoberto Ierusalimschy2004-12-071-16/+21
* static names do not need `luaX_' prefixRoberto Ierusalimschy2004-12-031-4/+4
* detailsRoberto Ierusalimschy2004-12-031-2/+2
* static names do not need `luaX_' prefixRoberto Ierusalimschy2004-12-031-7/+7
* detailsRoberto Ierusalimschy2004-11-191-4/+3
* small optimization for boolean constants + new format for SETLIST opcodeRoberto Ierusalimschy2004-10-041-6/+4
* new way to use `vararg' parameters (with `...')Roberto Ierusalimschy2004-05-311-29/+31
* new scheme for configuration through `luaconf.h'Roberto Ierusalimschy2004-04-301-7/+2
* small optimization for {f()}Roberto Ierusalimschy2004-03-261-1/+2
* better error messages for some limitsRoberto Ierusalimschy2004-03-121-7/+17
* `TObject' renamed to `TValue' + other name changes and better assertionsRoberto Ierusalimschy2003-12-101-4/+4
* First version of incremental GCRoberto Ierusalimschy2003-12-091-4/+7
* debugger can only see `local function' after it has a meaningful valueRoberto Ierusalimschy2003-10-091-1/+3
* avoid the use of `strlen' (strings are literals)Roberto Ierusalimschy2003-10-031-15/+13
* bug: syntax `local function' does not increment stack sizeRoberto Ierusalimschy2003-09-291-4/+7
* detailRoberto Ierusalimschy2003-09-051-2/+2
* parser fully reentrant(!)Roberto Ierusalimschy2003-08-271-10/+36
* zio does not keep "source" name (nobody uses it)Roberto Ierusalimschy2003-08-251-3/+3
* syntax `...=var' changed to `var=...'Roberto Ierusalimschy2003-07-291-25/+20
* detailsRoberto Ierusalimschy2003-07-281-5/+5
* more changes to reduce stack usage by the parserRoberto Ierusalimschy2003-07-091-5/+7
* small changes to reduce stack usage by the parserRoberto Ierusalimschy2003-07-091-22/+27
* no more compatibility code for 4.0Roberto Ierusalimschy2003-05-141-13/+1
* new syntax: `... [= name]'Roberto Ierusalimschy2003-05-141-16/+22
* new semantics for "for" local variablesRoberto Ierusalimschy2003-05-131-20/+24
* warnings from several compilers (mainly typecasts when lua_Number is float)Roberto Ierusalimschy2003-04-031-2/+2
* better error message for (deprecated) "%global"Roberto Ierusalimschy2003-02-281-5/+11
* small optimization for sizes of array constructorsRoberto Ierusalimschy2003-02-181-3/+2
* compatibility with '%' syntax is optionalRoberto Ierusalimschy2003-02-111-1/+3
* different variables for number of upvalues and size of upvalue arrayRoberto Ierusalimschy2003-02-111-15/+12
* new functions to manipulate upvales (get/setupvalue)Roberto Ierusalimschy2002-12-191-10/+18
* OP_TFORLOOP uses extra stack spaceRoberto Ierusalimschy2002-12-111-1/+2
* bug: scope of generic for variables is not soundRoberto Ierusalimschy2002-12-061-26/+26
* each .c file defines its own nameRoberto Ierusalimschy2002-12-041-1/+3
* make more clear "primitive" recursive definitionsRoberto Ierusalimschy2002-11-221-106/+100
* avoid C stack overflow during parsingRoberto Ierusalimschy2002-11-221-2/+13
* detailRoberto Ierusalimschy2002-11-221-2/+2
* in case of memory allocation errors, sizecode and sizelineinfo canRoberto Ierusalimschy2002-10-161-2/+3
* use of different buffers for scanner and concatenationRoberto Ierusalimschy2002-10-081-2/+3