summaryrefslogtreecommitdiff
path: root/tests/luau.rs
AgeCommit message (Collapse)Author
2024-05-04Add `Lua::set_fflag()` to control Luau feature flagsAlex Orlenko
2024-01-27Fix crash when initializing Luau sandbox without stdlibs (#361)Alex Orlenko
2024-01-06Run tests for wasm32-unknown-emscriptenAlex Orlenko
2023-11-20Update Luau+windows `require` dylib failed testAlex Orlenko
2023-11-20Integrate Luau package into mlua api.Alex Orlenko
Eg. `Lua::load_from_std_lib` with `StdLib::PACKAGE` is now supported for Luau.
2023-11-16Rewrite Luau `require` function to support module loaders.Alex Orlenko
Also add `package` library with `path`/`loaded`/`loaders`.
2023-11-16Support Luau buffer type and and library.Alex Orlenko
Buffer is an object that represents a fixed-size mutable block of memory and added to Luau 0.601. See https://luau-lang.org/library#buffer-library for more details.
2023-08-12Add `Lua::set_vector_metatable()` method (unstable)Alex Orlenko
2023-07-28Update Luau compiler optionsAlex Orlenko
2023-07-10Add `Error::runtime()` helperAlex Orlenko
2023-06-20Add a dedicated type for Luau vector.Alex Orlenko
Refactor existing implementation and add 4-dimensional vectors support.
2023-06-07Fix setting Luau version number in `_VERSION` env varAlex Orlenko
2023-03-25Add &Lua to luau interrupt callback (fixes #197)Alex Orlenko
2022-10-30Better checks and tests when trying to modify a Luau readonly tableAlex Orlenko
2022-10-22Fix typoAlex Orlenko
2022-08-23Fix error message in tests (luau)Alex Orlenko
2022-06-29Set source name to full file path in Luau requireAlex Orlenko
2022-05-24Add `Function::coverage` for Luau to obtain coverage reportAlex Orlenko
2022-04-14Remove Luau compiler options from Chunk in favour of setting Compiler instance.Alex Orlenko
Add ability to set global Luau compiler used for load all chunks including via require function.
2022-04-08Don't pass Lua handler to interrupt callback (Luau) as it's not safe.Alex Orlenko
Optimize callback_error_ext to check stack only before allocating a new WrappedFailure.
2022-03-31Move some Luau functionality to a new moduleAlex Orlenko
Immplement native "vector" function to construct vectors
2022-03-30Support Luau interrupts (closes #138)Alex Orlenko
2022-03-28Sandboxing supportAlex Orlenko
2022-03-22Support `readonly` table attribute (luau)Alex Orlenko
2022-03-22Add Luau vector datatype supportAlex Orlenko
2022-03-21Add `require` function to LuauAlex Orlenko