File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 8
8
* ` FIX ` reimplement section ` luals.config ` in file doc.json
9
9
* ` FIX ` incorrect file names in file doc.json
10
10
* ` FIX ` remove extra ` ./ ` path prefix in the check report when using ` --check=. `
11
+ * ` FIX ` fix type annotations for bit module
11
12
12
13
## 3.13.6
13
14
` 2025-2-6 `
Original file line number Diff line number Diff line change @@ -22,25 +22,22 @@ function bit.tohex(x, n) end
22
22
function bit .bnot (x ) end
23
23
24
24
--- @param x integer
25
- --- @param x2 integer
26
25
--- @param ... integer
27
26
--- @return integer y
28
27
--- @nodiscard
29
- function bit .bor (x , x2 , ...) end
28
+ function bit .bor (x , ...) end
30
29
31
30
--- @param x integer
32
- --- @param x2 integer
33
31
--- @param ... integer
34
32
--- @return integer y
35
33
--- @nodiscard
36
- function bit .band (x , x2 , ...) end
34
+ function bit .band (x , ...) end
37
35
38
36
--- @param x integer
39
- --- @param x2 integer
40
37
--- @param ... integer
41
38
--- @return integer y
42
39
--- @nodiscard
43
- function bit .bxor (x , x2 , ...) end
40
+ function bit .bxor (x , ...) end
44
41
45
42
--- @param x integer
46
43
--- @param n integer
You can’t perform that action at this time.
0 commit comments