index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lparser.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
no need of lookahead in Zio
Roberto Ierusalimschy
2011-02-23
1
-3
/
+3
*
error for repeated label + jumps allowed to labels followed by
Roberto Ierusalimschy
2011-02-14
1
-24
/
+34
*
'break' does not need to be last statement in a block +
Roberto Ierusalimschy
2011-02-14
1
-81
/
+84
*
'break' coded as 'goto' + small bug when closing multiple gotos
Roberto Ierusalimschy
2011-02-10
1
-59
/
+52
*
simpler code for repeat-until
Roberto Ierusalimschy
2011-02-09
1
-11
/
+5
*
corrected 'follow' for checking whether label is last statement
Roberto Ierusalimschy
2011-02-09
1
-14
/
+21
*
small changes in goto-related error messages
Roberto Ierusalimschy
2011-02-09
1
-8
/
+15
*
ensures that all local variables are declared inside some block,
Roberto Ierusalimschy
2011-02-07
1
-45
/
+39
*
some reorganization of dynamic data structures used by the parser
Roberto Ierusalimschy
2011-02-07
1
-64
/
+65
*
no more 'OP_CLOSE' instructions (use jumps to close upvalues)
Roberto Ierusalimschy
2011-02-07
1
-3
/
+7
*
first implementation of 'goto'
Roberto Ierusalimschy
2011-02-04
1
-14
/
+174
*
new scheme to close upvalues in 'break'; jump instructions may
Roberto Ierusalimschy
2011-02-01
1
-4
/
+4
*
detail (cleaning trailing spaces)
Roberto Ierusalimschy
2011-01-26
1
-2
/
+2
*
new closures are always created on "next" register (so that GC knows
Roberto Ierusalimschy
2010-12-17
1
-9
/
+6
*
comment
Roberto Ierusalimschy
2010-12-15
1
-2
/
+2
*
name "_ENV" configurable through 'luaconf.h'
Roberto Ierusalimschy
2010-09-07
1
-4
/
+4
*
'pushclosure' -> 'codeclosure' (as there is another 'pushclosure' in
Roberto Ierusalimschy
2010-08-23
1
-8
/
+13
*
new way to distinguish between indexing tables in registers and
Roberto Ierusalimschy
2010-07-07
1
-20
/
+16
*
better organization for fields in struct 'expdesc'
Roberto Ierusalimschy
2010-07-02
1
-14
/
+14
*
'getlocal' gets information about parameters of Lua functions
Roberto Ierusalimschy
2010-06-21
1
-2
/
+2
*
new macro MAXUPVAL (maximum number of upvalues per closure)
Roberto Ierusalimschy
2010-05-31
1
-3
/
+3
*
semicolons now represent the empty statement
Roberto Ierusalimschy
2010-05-15
1
-3
/
+5
*
comments
Roberto Ierusalimschy
2010-05-14
1
-6
/
+6
*
detail (breaking a long line)
Roberto Ierusalimschy
2010-05-13
1
-4
/
+5
*
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
[prev]
[next]