mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update 2021-09-30-luau-recap-september-2021.md
This commit is contained in:
parent
e22e14c48f
commit
f317c612fa
1 changed files with 6 additions and 4 deletions
|
@ -42,12 +42,14 @@ local x = y
|
|||
* Luau now infers the result of `Instance:Clone()` much more accurately.
|
||||
* Luau type guard refinements now support more arbitrary cases, for instance `typeof(foo) ~= "Instance"` eliminates anything not a subclass of Instance.
|
||||
|
||||
|
||||
## Performance improvements
|
||||
|
||||
* We optimized the performance of the `Vector3.new` constructor.
|
||||
* `Vector3.new` constructor has been optimized and is now ~2x faster
|
||||
* A previously implemented optimization for table size prediction has been enhanced to predict final table size when `setmetatable` is used, such as `local self = setmetatable({}, Klass)`
|
||||
* Method calls for user-specified objects have been optimized and are now 2-4% faster
|
||||
* `debug.traceback` is now 1.5x faster, although `debug.info` is likely still superior for performance-conscious code
|
||||
* Creating table literals with explicit numeric indices, such as `{ [1] = 42 }`, is now noticeably faster, although list-style construction is still recommended.
|
||||
|
||||
## Other improvements
|
||||
|
||||
* We fixed some GC issues where objects could become "zombies".
|
||||
* We relaxed the Parallel Lua constraints when dispatching deferred events.
|
||||
* The existing 'TableLiteral' lint now flags cases when table literals have duplicate numeric indices, such as `{ [1] = 1, [1] = 2 }`
|
||||
|
|
Loading…
Add table
Reference in a new issue