summaryrefslogtreecommitdiff
path: root/meta/template/jit.lua
blob: f5571cb79075e841e6f6cc12aad9583b85611849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---#if not JIT then DISABLE() end
---@meta

---@version JIT
---@class jitlib
---@field version     string
---@field version_num number
---@field os          string
---@field arch        string
jit = {}

---@overload fun()
---@param func       function|boolean
---@param recursive? boolean
function jit.on(func, recursive) end

---@overload fun()
---@param func       function|boolean
---@param recursive? boolean
function jit.off(func, recursive) end

---@overload fun()
---@overload fun(tr: number)
---@param func       function|boolean
---@param recursive? boolean
function jit.flush(func, recursive) end

---@return boolean status
---@return ...
function jit.status() end

return jit