summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2023-02-12Add create_userdata_ref/create_userdata_ref_mut for scope (#206)Alex Orlenko
2023-02-03Allow registering and creating custom userdata types that don't necessary imp...Alex Orlenko
2023-01-06Rename `to_lua_err` -> `into_lua_err`Alex Orlenko
2023-01-06Allow deserializing values from serializable UserData using `Lua::from_value(...Alex Orlenko
2023-01-04Better Debug for StringAlex Orlenko
2023-01-02Add `Table::clear()` methodAlex Orlenko
2022-12-30Rename wrapped_failure/thread cache to poolAlex Orlenko
2022-12-24Refactor `userdata::MetaMethod`.Alex Orlenko
2022-12-22Add `Function::wrap`/`Function::wrap_mut`/`Function::wrap_async` to wrap func...Alex Orlenko
2022-12-21Fix module testsAlex Orlenko
2022-12-20Remove FromLua impl for UserData+CloneAlex Orlenko
2022-12-19Refactor `AsChunk` traitAlex Orlenko
2022-12-18Check for invalid args when parsing `#[lua_module(...)]` proc macroAlex Orlenko
2022-12-18feat: Support custom name of `lua_module`rise0chen
2022-12-18Use `impl AsRef<str>` for userdata methods/fields instead of generic param.Alex Orlenko
2022-12-18Do not clear usevalues when taking value out of userdata.Alex Orlenko
2022-12-15Fix subtraction overflow when calculating index for `MultiValue::get()`.Alex Orlenko
2022-12-03Redefine `_VERSION` for Luau to include version number.Alex Orlenko
2022-11-07Fix bug when recycled Registry slot can be set to Nil.Alex Orlenko
2022-10-30Better checks and tests when trying to modify a Luau readonly tableAlex Orlenko
2022-10-23Add push/pop methods to TableAlex Orlenko
2022-10-22Fix typoAlex Orlenko
2022-08-23Update compile testsAlex Orlenko
2022-08-23Fix error message in tests (luau)Alex Orlenko
2022-08-23Check if chunk is empty in luaL_loadbufferx for Luau (fixes #200)Alex Orlenko
2022-08-01Fix Lua assertion when inspecting another thread stack.Alex Orlenko
2022-07-31Close to-be-closed variables for Lua 5.4 when using call_async functionsAlex Orlenko
2022-07-22Fix a bug in `Function::bind` when args and binds are emptyAlex Orlenko
2022-06-29Set source name to full file path in Luau requireAlex Orlenko
2022-06-28Add Lua::create_proxy for easy access to UserData static fields and functionsAlex Orlenko
2022-05-30Update integer/number coercion logicAlex Orlenko
2022-05-26Add "send" testAlex Orlenko
2022-05-24Correctly deserialize newtype struct (#168)Alex Orlenko
2022-05-24Add `Function::coverage` for Luau to obtain coverage reportAlex Orlenko
2022-05-18Add `Value::to_pointer()` function.Alex Orlenko
2022-05-15Refactor `Function::bind` implementation.Alex Orlenko
2022-05-07Don't require Lua sources for modules in build systemAlex Orlenko
2022-04-18Add `Function::info()` to get information about functions.Alex Orlenko
2022-04-17Fix "unused" warning in testsAlex Orlenko
2022-04-16Add parking_lot dependency and featureSondre Aasemoen
2022-04-14Refactor `AsChunk` trait.Alex Orlenko
2022-04-14Remove Luau compiler options from Chunk in favour of setting Compiler instance.Alex Orlenko
2022-04-13Update compile testsAlex Orlenko
2022-04-13Add tests for static Lua instanceAlex Orlenko
2022-04-08Implement Hash for Lua StringAlex Orlenko
2022-04-08Fix Luau documentation in docs.rsAlex Orlenko
2022-04-08Don't pass Lua handler to interrupt callback (Luau) as it's not safe.Alex Orlenko
2022-03-31Move some Luau functionality to a new moduleAlex Orlenko
2022-03-30Make LuaHook as Fn instead of FnMut to remove Mutex and improve performanceAlex Orlenko
2022-03-30Support Luau interrupts (closes #138)Alex Orlenko