You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be able to support documentation comments inlined within a declarations file. For this, I need the AST of the file to be able to find the comments located within it, and attach them to the appropriate functions etc.
Currently, the SourceModule (which contains the AST) created for a declarations file is discarded after its used
The text was updated successfully, but these errors were encountered:
* Fix#817
* Fix#850
* Optimize math.floor/ceil/round with SSE4.1
* Results in a ~7-9% speedup on the math-cordic benchmark.
* Optimized table.sort.
* table.sort is now ~4.1x faster (when not using a predicate) and ~2.1x
faster when using a simple predicate. Performance may improve further in
the future.
* Reorganize the memory ownership of builtin type definitions.
* This is a small initial step toward affording parallel typechecking.
The new type solver is coming along nicely. We are working on fixing
crashes and bugs.
A few major changes to native codegen landed this week:
* Fixed lowering of Luau IR mod instruction when first argument is a
constant
* Added VM register data-flow/capture analysis
* Fixed issues with optimizations in unreachable blocks
---------
Co-authored-by: Arseny Kapoulkine <[email protected]>
Co-authored-by: Vyacheslav Egorov <[email protected]>
I want to be able to support documentation comments inlined within a declarations file. For this, I need the AST of the file to be able to find the comments located within it, and attach them to the appropriate functions etc.
Currently, the SourceModule (which contains the AST) created for a declarations file is discarded after its used
The text was updated successfully, but these errors were encountered: