Skip to content

Commit ee5e872

Browse files
authored
Merge branch 'master' into feat/param_infer_for_override
2 parents 75cf4cf + fbd5bb1 commit ee5e872

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

Diff for: changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<!-- Add all new changes here. They will be moved under a version at release -->
55
* `NEW` Added support for Japanese locale
66
* `NEW` Infer function parameter types when overriding the same-named class function in an instance of that class [#2158](https://github.com/LuaLS/lua-language-server/issues/2158)
7+
* `FIX` Eliminate floating point error in test benchmark output
8+
* `FIX` Remove luamake install from make scripts
79

810
## 3.10.6
911
`2024-9-10`

Diff for: make.bat

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
git submodule update --init --recursive
22
cd 3rd\luamake
3-
call compile\install.bat
43
call compile\build.bat
54
cd ..\..
65
IF "%~1"=="" (

Diff for: make.sh

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
git submodule update --init --recursive
44
pushd 3rd/luamake
5-
./compile/install.sh
65
./compile/build.sh
76
popd
87
if [ -z "$1" ]; then

Diff for: test/full/projects.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ local function doProjects(pathname)
4949
for uri in files.eachFile() do
5050
local fileClock = os.clock()
5151
diag.doDiagnostic(uri, true)
52-
print('诊断文件耗时:', os.clock() - fileClock, uri)
52+
print('诊断文件耗时:', string.format("%.6f", os.clock() - fileClock), uri)
5353
end
5454

5555
local passed = os.clock() - clock

Diff for: test/full/self.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ for uri in files.eachFile() do
4848
end)
4949
local fileClock = os.clock()
5050
diag.doDiagnostic(uri, true)
51-
print('诊断文件耗时:', os.clock() - fileClock, uri)
51+
print('诊断文件耗时:', string.format("%.6f", os.clock() - fileClock), uri)
5252
::CONTINUE::
5353
end
5454

0 commit comments

Comments
 (0)