index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
testes
/
locals.lua
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
'__close' gets no error object if there is no error
Roberto Ierusalimschy
2025-02-28
1
-8
/
+36
*
Auxiliary buffer uses external strings
Roberto Ierusalimschy
2023-11-13
1
-8
/
+2
*
Avoid excessive name pollution in test files
Roberto Ierusalimschy
2022-12-28
1
-3
/
+5
*
Bug: 'break' may not properly close variable in a 'for' loop
Roberto Ierusalimschy
2022-08-24
1
-0
/
+20
*
Bug: 'lua_settop' may use an invalid pointer to stack
Roberto Ierusalimschy
2022-05-25
1
-0
/
+22
*
Bug: 'local function' can assign to '<const>' variables
Roberto Ierusalimschy
2021-06-20
1
-0
/
+2
*
Bug: yielding in '__close' mess up number of returns
Roberto Ierusalimschy
2021-04-16
1
-0
/
+59
*
Bug: tbc variables in "for" loops don't avoid tail calls
Roberto Ierusalimschy
2021-04-07
1
-0
/
+23
*
New test module 'tracegc'
Roberto Ierusalimschy
2021-03-01
1
-2
/
+4
*
'__close' methods can yield in the return of a C function
Roberto Ierusalimschy
2021-02-12
1
-1
/
+75
*
New implementation for to-be-closed variables
Roberto Ierusalimschy
2021-02-09
1
-8
/
+41
*
Correct order of return hooks vs. close metamethods
Roberto Ierusalimschy
2021-01-21
1
-7
/
+70
*
Simpler handling of errors when creating tbc variables
Roberto Ierusalimschy
2021-01-19
1
-8
/
+5
*
Allow yields in '__close' metamethods ater errors
Roberto Ierusalimschy
2021-01-18
1
-8
/
+40
*
Allow yields inside '__close' metamethods
Roberto Ierusalimschy
2021-01-13
1
-0
/
+88
*
Better error messages for calling non-callable objects
Roberto Ierusalimschy
2020-12-29
1
-1
/
+16
*
No need to recheck close method before calling it
Roberto Ierusalimschy
2020-12-29
1
-2
/
+44
*
Report last error in closing methods
Roberto Ierusalimschy
2020-12-22
1
-75
/
+24
*
Upvalues removed from 'openupval' before being closed
Roberto Ierusalimschy
2020-12-21
1
-17
/
+9
*
'coroutine.close'/'lua_resetthread' report original errors
Roberto Ierusalimschy
2020-12-18
1
-8
/
+15
*
Details
Roberto Ierusalimschy
2020-10-12
1
-0
/
+23
*
Avoid memory allocation in some functions from 'ltests.c'
Roberto Ierusalimschy
2020-07-04
1
-2
/
+2
*
Fixed two bugs in to-be-closed variables x constants
Roberto Ierusalimschy
2020-06-01
1
-0
/
+37
*
Comments (mosty typos)
Roberto Ierusalimschy
2019-12-30
1
-1
/
+1
*
Subtraction of small constant integers optimized with OP_ADDI
Roberto Ierusalimschy
2019-09-24
1
-1
/
+1
*
Default for warnings changed to "off"
Roberto Ierusalimschy
2019-08-20
1
-0
/
+1
*
Improvement in warn-mode '@store' (for testing)
Roberto Ierusalimschy
2019-08-18
1
-14
/
+21
*
Supressed errors in '__close' generate warnings
Roberto Ierusalimschy
2019-08-16
1
-25
/
+127
*
Tracebacks recognize metamethods '__close'
Roberto Ierusalimschy
2019-07-31
1
-4
/
+17
*
To-be-closed variables must be closed on initialization
Roberto Ierusalimschy
2019-07-31
1
-11
/
+12
*
Change in the syntax of attributes
Roberto Ierusalimschy
2019-07-30
1
-35
/
+35
*
'__close' method may be called again in case of error
Roberto Ierusalimschy
2019-07-16
1
-7
/
+14
*
First implementation of constant propagation
Roberto Ierusalimschy
2019-07-12
1
-1
/
+1
*
New implementation for constants
Roberto Ierusalimschy
2019-07-09
1
-4
/
+14
*
Local attributes can be used in list of local variables
Roberto Ierusalimschy
2019-07-03
1
-6
/
+28
*
Details in tests
Roberto Ierusalimschy
2019-06-21
1
-18
/
+6
*
Multiple errors in '__toclose' report the first one
Roberto Ierusalimschy
2019-06-05
1
-13
/
+24
*
bug in 5.4 alpha rc1: to-be-closed x vararg functions
Roberto Ierusalimschy
2019-06-03
1
-0
/
+9
*
Details
Roberto Ierusalimschy
2019-05-28
1
-1
/
+0
*
Flag for to-be-closed variables changed to '<toclose>'
Roberto Ierusalimschy
2019-05-09
1
-25
/
+25
*
Coroutines do not unwind the stack in case of errors
Roberto Ierusalimschy
2019-05-09
1
-8
/
+27
*
No more to-be-closed functions
Roberto Ierusalimschy
2019-01-04
1
-23
/
+31
*
Calls cannot be tail in the scope of a to-be-closed variable
Roberto Ierusalimschy
2018-12-04
1
-5
/
+8
*
A to-be-closed variable must have a closable value (or be nil)
Roberto Ierusalimschy
2018-11-29
1
-0
/
+21
*
Auxiliary buffer cannot close box with 'lua_remove'
Roberto Ierusalimschy
2018-11-26
1
-16
/
+40
*
String buffer using to-be-closed variable
Roberto Ierusalimschy
2018-11-13
1
-0
/
+32
*
To-be-closed variable in 'for' loop separated from the state
Roberto Ierusalimschy
2018-11-07
1
-1
/
+7
*
New syntax for to-be-closed variables
Roberto Ierusalimschy
2018-11-07
1
-21
/
+21
*
State in generic 'for' acts as a to-be-closed variable
Roberto Ierusalimschy
2018-10-31
1
-1
/
+49
*
Closing methods should not interfere with returning values
Roberto Ierusalimschy
2018-10-25
1
-1
/
+54
[next]