mirror of
https://github.com/lua/lua
synced 2026-09-26 16:17:11 +03:00
Details
Several details in code (e.g., moving a variable to the most inner scope that encloses its uses), comments, parameter names, extra tests.
This commit is contained in:
parent
9b7987a9d1
commit
6eb53b7526
13 changed files with 52 additions and 45 deletions
|
|
@ -960,7 +960,10 @@ do
|
|||
aux(-10,0)
|
||||
aux(1, 6)
|
||||
aux(1, 2)
|
||||
aux(1, 13)
|
||||
aux(1, 31)
|
||||
aux(1, 32)
|
||||
aux(1, 33)
|
||||
aux(-10, 10)
|
||||
aux(-10,-10) -- unit set
|
||||
aux(minint, minint) -- unit set
|
||||
|
|
@ -998,6 +1001,7 @@ do
|
|||
end
|
||||
aux(0, maxint)
|
||||
aux(1, maxint)
|
||||
aux(3, maxint // 3)
|
||||
aux(minint, -1)
|
||||
aux(minint // 2, maxint // 2)
|
||||
aux(minint, maxint)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue