| Commit message (Expand) | Author | Age | Files | Lines |
* | new name for old "mem.h" (conflicts with some compiler libraries) | Roberto Ierusalimschy | 1997-03-31 | 1 | -2/+2 |
* | new form for constructors: {[exp] = exp, ...} | Roberto Ierusalimschy | 1997-03-06 | 1 | -27/+23 |
* | small syntax error (yacc does not complain, but bison does). | Roberto Ierusalimschy | 1997-02-13 | 1 | -2/+2 |
* | better check when converting from float to int, to avoid overflow | Roberto Ierusalimschy | 1997-01-31 | 1 | -4/+4 |
* | small correction to avoid "wrong" default action | Roberto Ierusalimschy | 1997-01-15 | 1 | -2/+2 |
* | syntax error function is in "lex.c" (it has the token) | Roberto Ierusalimschy | 1996-11-08 | 1 | -8/+2 |
* | new way to handle pragmas (at the lexical level, instead of parsing). | Roberto Ierusalimschy | 1996-09-25 | 1 | -10/+2 |
* | a chunk may end with a return. | Roberto Ierusalimschy | 1996-09-24 | 1 | -6/+7 |
* | very small corrections | Roberto Ierusalimschy | 1996-07-24 | 1 | -1/+3 |
* | first version of vararg facility (plus new function "call"). | Roberto Ierusalimschy | 1996-05-28 | 1 | -31/+50 |
* | better control when growing arrays. | Roberto Ierusalimschy | 1996-03-21 | 1 | -10/+3 |
* | "PrintCode" now is defined in luac. | Roberto Ierusalimschy | 1996-03-08 | 1 | -228/+1 |
* | fixed strings (not collectable) don't need to be inserted in the constant table. | Roberto Ierusalimschy | 1996-02-26 | 1 | -2/+2 |
* | check if jump is bigger than 2^16. | Roberto Ierusalimschy | 1996-02-26 | 1 | -3/+5 |
* | useless #include. | Roberto Ierusalimschy | 1996-02-14 | 1 | -2/+1 |
* | new header "lex.h". | Roberto Ierusalimschy | 1996-02-13 | 1 | -1/+2 |
* | BIG CHANGE: new data structure for constants, strings and globals, using | Roberto Ierusalimschy | 1996-02-12 | 1 | -7/+7 |
* | debug interface functions to manipulated local variables: | Roberto Ierusalimschy | 1996-02-07 | 1 | -11/+19 |
* | improve of compiling error messages. | Roberto Ierusalimschy | 1996-02-05 | 1 | -10/+13 |
* | local variable stack needs only the name of the variable (TreeNode); | Roberto Ierusalimschy | 1996-01-23 | 1 | -19/+12 |
* | correction of some order dependencies in debug code. | Roberto Ierusalimschy | 1996-01-22 | 1 | -18/+20 |
* | local variables may appear inside blocks in main code. | Roberto Ierusalimschy | 1995-10-26 | 1 | -3/+1 |
* | functions now may be declared with any "var" as a name; | Roberto Ierusalimschy | 1995-10-26 | 1 | -64/+60 |
* | new syntax for function declarations: "function a.x () ... " | Roberto Ierusalimschy | 1995-10-25 | 1 | -19/+16 |
* | new method to keep debug line information: current line is stored on the | Roberto Ierusalimschy | 1995-10-25 | 1 | -89/+125 |
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 1 | -22/+13 |
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 1 | -13/+18 |
* | syntax for {...;...} is more flexible now. | Roberto Ierusalimschy | 1995-06-08 | 1 | -10/+21 |
* | run-time stack now is controled at run time, instead of | Waldemar Celes | 1995-04-11 | 1 | -22/+28 |
* | strdup is done via mem.c to control its memory allocation | Roberto Ierusalimschy | 1995-01-14 | 1 | -2/+2 |
* | bytecodes are indexed by integers, not Words, to allow bigger code on 32 bit ... | Waldemar Celes | 1994-12-27 | 1 | -10/+8 |
* | routines are defined before rules, to allow correct compilation with bison | Waldemar Celes | 1994-12-27 | 1 | -185/+184 |
* | better control of integer types and their limits | Roberto Ierusalimschy | 1994-12-20 | 1 | -8/+12 |
* | opcode PUSHSELF has a parameter that indicates the method to be called | Roberto Ierusalimschy | 1994-12-06 | 1 | -4/+11 |
* | erased function yywrap (nobody used it) | Roberto Ierusalimschy | 1994-11-25 | 1 | -6/+1 |
* | modifications to avoid warnings when compiling yacc code | Roberto Ierusalimschy | 1994-11-23 | 1 | -3/+11 |
* | no more unary '+' | Roberto Ierusalimschy | 1994-11-22 | 1 | -2/+1 |
* | small bug corrected | Roberto Ierusalimschy | 1994-11-17 | 1 | -7/+7 |
* | listing did not list POWOP | Roberto Ierusalimschy | 1994-11-17 | 1 | -2/+3 |
* | uses new memory module (mem.c). | Roberto Ierusalimschy | 1994-11-17 | 1 | -65/+36 |
* | unification of symbol tree and constant tree | Roberto Ierusalimschy | 1994-11-14 | 1 | -80/+61 |
* | small changes to avoid shadowing | Roberto Ierusalimschy | 1994-11-13 | 1 | -11/+11 |
* | because lua_error does a longjmp, there is no need to a variable | Roberto Ierusalimschy | 1994-11-09 | 1 | -69/+36 |
* | new opcodes for '>' and '>=' | Roberto Ierusalimschy | 1994-11-06 | 1 | -3/+3 |
* | RESET is generated at codereturn. | Roberto Ierusalimschy | 1994-11-03 | 1 | -4/+2 |
* | new way to call functions, plus several small changes. This is | Roberto Ierusalimschy | 1994-11-02 | 1 | -85/+105 |
* | CREATEARRAY now has an argument, the size of the array to create. | Roberto Ierusalimschy | 1994-11-01 | 1 | -5/+11 |
* | deletion of 'include mm.h' | Roberto Ierusalimschy | 1994-10-21 | 1 | -3/+1 |
* | power operator (^). | Waldemar Celes | 1994-10-17 | 1 | -50/+37 |
* | Correcao do tratamento de erro reportado dentro de uma funcao. | Waldemar Celes | 1994-10-11 | 1 | -2/+2 |