Skip to content

Commit 3991bea

Browse files
authored
Merge branch 'master' into meta-support-metable
2 parents 754e719 + adc1c1b commit 3991bea

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# changelog
22

3+
## 3.6.21
4+
`2023-5-24`
5+
* `FIX` disable ffi plugin
6+
37
## 3.6.20
48
`2023-5-23`
59
* `NEW` support connecting by socket with `--socket=PORT`

meta/template/jit.profile.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
local profile = {}
55

66
---@param mode string
7-
---@param func fun(L:thread,samples:integer,vmst:string)
7+
---@param func fun(L: thread, samples: integer, vmst: string)
88
function profile.start(mode, func)
99
end
1010

1111
function profile.stop()
1212
end
1313

14-
---@overload fun(th:thread,fmt:string,depth:integer)
14+
---@overload fun(th: thread, fmt: string, depth: integer)
1515
---@param fmt string
1616
---@param depth integer
1717
function profile.dumpstack(fmt, depth)

meta/template/jit.util.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ end
105105
function util.tracemc(tr)
106106
end
107107

108-
---@overload fun(exitno:integer):integer
108+
---@overload fun(exitno: integer): integer
109109
---@param tr Trace
110110
---@param exitno integer
111111
---@return integer? addr

script/plugins/ffi/init.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,8 @@ files.watch(function (ev, uri)
367367
end)
368368

369369
ws.watch(function (ev, uri)
370+
-- TODO
371+
do return end
370372
if ev == 'startReload' then
371373
if config.get(uri, 'Lua.runtime.version') ~= 'LuaJIT' then
372374
return

0 commit comments

Comments
 (0)