mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
Update compatibility.md to split coroutine.close from lua_resetthread (#309)
Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com>
This commit is contained in:
parent
b7f78f4997
commit
abf9fc2754
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ Floor division is less harmful, but it's used rarely enough that `math.floor(a/b
|
||||||
| const variables | ❌ | while there's some demand for const variables, we'd never adopt this syntax |
|
| const variables | ❌ | while there's some demand for const variables, we'd never adopt this syntax |
|
||||||
| new implementation for math.random | ✔️ | our RNG is based on PCG, unlike Lua 5.4 which uses Xoroshiro |
|
| new implementation for math.random | ✔️ | our RNG is based on PCG, unlike Lua 5.4 which uses Xoroshiro |
|
||||||
| optional `init` argument to `string.gmatch` | 🤷♀️ | no strong use cases |
|
| optional `init` argument to `string.gmatch` | 🤷♀️ | no strong use cases |
|
||||||
| new functions `lua_resetthread` and `coroutine.close` | 🤷 | not useful without to-be-closed variables |
|
| new functions `lua_resetthread` and `coroutine.close` | ✔️ ||
|
||||||
| coercions string-to-number moved to the string library | 😞 | we love this, but it breaks compatibility |
|
| coercions string-to-number moved to the string library | 😞 | we love this, but it breaks compatibility |
|
||||||
| new format `%p` in `string.format` | 🤷♀️ | no strong use cases |
|
| new format `%p` in `string.format` | 🤷♀️ | no strong use cases |
|
||||||
| `utf8` library accepts codepoints up to 2^31 | 🤷♀️ | no strong use cases |
|
| `utf8` library accepts codepoints up to 2^31 | 🤷♀️ | no strong use cases |
|
||||||
|
|
Loading…
Add table
Reference in a new issue