Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-01-24 | Add `table.move()` to LuaJIT compatibility | zandr | |
LuaJIT supports `table.move()`: https://luajit.org/extensions.html#lua53 | |||
2023-12-26 | bit meta: tohex returns a string | Bilal Bassam | |
2023-09-20 | add `__close` to `setmetatable` | 最萌小汐 | |
fix #2335 | |||
2023-08-24 | 修复基础库定义 | 最萌小汐 | |
2023-08-02 | fix template | 最萌小汐 | |
2023-07-30 | fix: os.time optionals | carsakiller | |
Closes `os.time` expected input is wrong #2235 | |||
2023-07-28 | fix: os.time parameter | carsakiller | |
Closes #2235 | |||
2023-07-26 | Update string.dump so it doesn't have strip argument in Lua 5.1 and 5.2 | C3pa | |
2023-07-04 | Mark string.find return values as nilable | C3pa | |
2023-06-06 | update metatable | 最萌小汐 | |
2023-05-31 | reset | fesily | |
2023-05-31 | fix assign-type-mismatch | fesily | |
2023-05-25 | Merge branch 'master' into meta-support-metable | fesily | |
2023-05-22 | Update basic.lua | fesily | |
2023-05-22 | Merge branch 'master' into meta-support-metable | fesily | |
2023-05-15 | meta: add some spaces to improve readability | C3pa | |
2023-05-15 | move other file | fesily | |
2023-05-15 | meta:fix jit module | fesily | |
2023-05-11 | delete __index | fesily | |
2023-05-11 | add base class | fesily | |
2023-05-11 | meta:support metatable | fesily | |
2023-04-27 | fix | fesily | |
2023-04-27 | doc fix coroutine isyieldable | fesily | |
2023-03-20 | Update string.gmatch argument types | C3pa | |
2023-03-20 | Change `string.format`'s argument to string|number | C3pa | |
2023-03-20 | Add some more number types to string API | C3pa | |
Co-authored-by: carsakiller <carsakiller@gmail.com> | |||
2023-03-18 | Make functions in string api accept numbers | C3pa | |
All of these functions effectively call `tostring()`, when the passed parameter is a number. I think there is no need to raise warnings if users pass numbers instead of strings to these functions. | |||
2023-03-03 | enable `table.pack` and `table.unpack` to LuaJIT | 最萌小汐 | |
resolve #1942 | |||
2023-03-02 | Merge pull request #1959 from Bilal2453/patch-2 | 最萌小汐 | |
meta: newproxy can accept a userdata value | |||
2023-03-01 | Improve math.abs annotation | C3pa | |
This brings it in line with math.max, and max.min. This change allows the type inference to correctly infer the returned type if math.abs is passed an integer as an argument. | |||
2023-03-01 | meta: newproxy can accept a userdata value | Bilal Bassam | |
2023-01-30 | respect quotation marks | 最萌小汐 | |
2023-01-16 | support `---@meta [name]` | 最萌小汐 | |
once declared `name`, user can only require this file by declared name meta file can not be required with name `_` | |||
2022-11-17 | Merge pull request #1706 from fesily/fix-some-doc-error | 最萌小汐 | |
fix some doc error | |||
2022-11-17 | fix some doc error | fesily | |
2022-11-10 | fix template docs | 最萌小汐 | |
2022-11-09 | fix ffi meta | Lyrthras | |
2022-11-08 | fix wrong diagnostics for `pcall` and `xpcall` | 最萌小汐 | |
2022-10-17 | fix #1637 | 最萌小汐 | |
2022-10-05 | Make second param of ffi.gc optional | Voycawojka | |
2022-09-22 | fix: update table meta | Ryan Kois | |
2022-09-15 | `string.find` returns `any` for now | 最萌小汐 | |
2022-09-14 | fix: string.match return type #1539 | carsakiller | |
2022-09-08 | Replace old variable return syntax (#1540) | carsakiller | |
* fix: replace old variable return syntax #1539 * Update jit.status() Co-authored-by: Michael Martin <flrgh@protonmail.com> | |||
2022-09-08 | meta template:luajit add cdata type | fesily | |
2022-08-17 | fix #1476 | 最萌小汐 | |
2022-08-16 | fix inappropriate definition of utf8.offset | Yuqi Huang | |
The third parameter of utf8.offset is optional according to Lua Reference Manual. | |||
2022-08-13 | move string.buffer to buildin | fesily | |
2022-08-13 | fix #1461 | 最萌小汐 | |
2022-07-13 | meta: make osdate accept strings | Cr4xy | |