Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
1997-11-19 | first implementation of centralized global state. | Roberto Ierusalimschy | 25 | -828/+781 | |
1997-11-10 | details | Roberto Ierusalimschy | 1 | -2/+2 | |
1997-11-07 | "call" now handles errors (instead of "dostring") | Roberto Ierusalimschy | 1 | -20/+29 | |
1997-11-07 | small details | Roberto Ierusalimschy | 4 | -9/+12 | |
1997-11-04 | "lua_open": now lua has an explicit open operation. | Roberto Ierusalimschy | 14 | -133/+87 | |
1997-11-03 | trigonometric mode stored in a Lua global variable. | Roberto Ierusalimschy | 1 | -11/+12 | |
1997-11-03 | no need of "emergency error"... | Roberto Ierusalimschy | 1 | -20/+3 | |
1997-11-03 | "global" version of a nil object. | Roberto Ierusalimschy | 4 | -16/+13 | |
1997-10-30 | "read" & "write" may receive a file handler as first argument | Roberto Ierusalimschy | 1 | -9/+27 | |
1997-10-30 | new "block" syntax (DO ... END) | Roberto Ierusalimschy | 1 | -1/+3 | |
1997-10-28 | more precise error messages for compiler limits. | Roberto Ierusalimschy | 1 | -7/+7 | |
1997-10-27 | small bug. | Roberto Ierusalimschy | 1 | -3/+3 | |
1997-10-24 | optimization to handle <a.x> (new opcode). | Roberto Ierusalimschy | 3 | -23/+74 | |
1997-10-24 | definition of "PI" and modes for angles. | Roberto Ierusalimschy | 1 | -7/+23 | |
1997-10-24 | first version of Cclosures. | Roberto Ierusalimschy | 15 | -149/+177 | |
1997-10-23 | "foreach" and "foreachvar" more robust (to survive GCs), and with | Roberto Ierusalimschy | 1 | -12/+24 | |
termination test. | |||||
1997-10-23 | GC now considers an "estimate" of object size, instead of just the number | Roberto Ierusalimschy | 8 | -34/+54 | |
of objects. | |||||
1997-10-18 | functions may use many upvalues, to keep global values. | Roberto Ierusalimschy | 1 | -2/+2 | |
1997-10-18 | new functions "foreach" and "foreachvar" | Roberto Ierusalimschy | 1 | -22/+79 | |
1997-10-18 | macro "val" should live together with macro "ref". | Roberto Ierusalimschy | 2 | -3/+3 | |
1997-10-16 | details | Roberto Ierusalimschy | 1 | -4/+4 | |
1997-10-16 | better identification of types which are tags | Roberto Ierusalimschy | 3 | -60/+31 | |
1997-10-16 | new (smaller) prompt | Roberto Ierusalimschy | 1 | -2/+2 | |
1997-10-16 | "nupvalues" is kept in Closure, not in prototype (as a preparation | Roberto Ierusalimschy | 8 | -33/+34 | |
for C closures...) | |||||
1997-10-15 | details | Roberto Ierusalimschy | 1 | -60/+27 | |
1997-10-13 | more uniform treatment to opcode variants. | Roberto Ierusalimschy | 3 | -229/+241 | |
1997-10-13 | using bison instead of yacc; lparser.c renamed to lstx.c (to | Roberto Ierusalimschy | 2 | -17/+16 | |
avoid confusion with lparser.h...) | |||||
1997-10-06 | prompt for interactive mode | Roberto Ierusalimschy | 1 | -6/+13 | |
1997-10-06 | jumps are relative to next instruction | Roberto Ierusalimschy | 3 | -126/+133 | |
1997-10-01 | all jumps have byte variants; WHILE optimization | Roberto Ierusalimschy | 3 | -76/+126 | |
1997-09-26 | better way to traverse GCnode lists. | Roberto Ierusalimschy | 7 | -55/+40 | |
1997-09-26 | new implementation for globals: Global value is stored in TaggedString | Roberto Ierusalimschy | 17 | -288/+251 | |
1997-09-24 | new opcode variants. | Roberto Ierusalimschy | 3 | -84/+145 | |
1997-09-23 | better control over closed files | Roberto Ierusalimschy | 1 | -3/+11 | |
1997-09-22 | better way to cope with opcode variants | Roberto Ierusalimschy | 3 | -177/+160 | |
1997-09-19 | new way to code globals, using const table instead of putting global | Roberto Ierusalimschy | 3 | -32/+56 | |
index inside the opcode. | |||||
1997-09-19 | small optimizations (bit scrubbing) | Roberto Ierusalimschy | 3 | -176/+141 | |
1997-09-16 | Syntax analizer and code generator | Roberto Ierusalimschy | 2 | -347/+444 | |
1997-09-16 | Makefile | Roberto Ierusalimschy | 1 | -53/+63 | |
1997-09-16 | Lua virtual machine | Roberto Ierusalimschy | 2 | -0/+684 | |
1997-09-16 | Opcodes for Lua virtual machine | Roberto Ierusalimschy | 2 | -167/+97 | |
1997-09-16 | Standard I/O (and system) library | Roberto Ierusalimschy | 2 | -36/+29 | |
1997-09-16 | Type definitions for Lua objects | Roberto Ierusalimschy | 2 | -29/+171 | |
1997-09-16 | Garbage Collector | Roberto Ierusalimschy | 2 | -0/+316 | |
1997-09-16 | Lexical Analizer | Roberto Ierusalimschy | 3 | -156/+155 | |
1997-09-16 | Stack and Call structure of Lua | Roberto Ierusalimschy | 3 | -1484/+477 | |
1997-09-16 | Tag methods | Roberto Ierusalimschy | 4 | -417/+378 | |
1997-09-16 | Built-in functions | Roberto Ierusalimschy | 4 | -431/+418 | |
1997-09-16 | String table (keep all strings handled by Lua) | Roberto Ierusalimschy | 4 | -249/+207 | |
1997-09-16 | auxiliar functions from Lua API | Roberto Ierusalimschy | 2 | -0/+584 | |