- 04 Feb, 2023 1 commit
-
-
Roberto Iffland authored
* Added support for multiple return values via ValueTuple * Fixed .net46 build by conditionally removing tuple support --------- Co-authored-by:Roberto Iffland <roberto.iffland@spektra-dresden.com>
-
- 31 Jan, 2023 1 commit
-
-
Roberto Iffland authored
Changed the handling of variadic arguments. A Table doesn't work as a range of values anymore. (#476) Co-authored-by:Roberto Iffland <roberto.iffland@spektra-dresden.com>
-
- 26 Nov, 2022 2 commits
-
-
Mathyn authored
* Moved Lua _globals to a separate class (this class includes a fix for #468) * Added unit tests and made a small tweak to LuaGlobals * bin and obj for test .net6.0 project are now correctly ignored * Removed Assert.Contains calls because these are not supported on iOS and tvOS
-
Vinicius Jarina authored
-
- 09 Nov, 2021 1 commit
-
-
MegaPiggy authored
* Added Threads * Allowed userdata to be pushed. * Added a few more methods XMove: Exchange values between different threads of the same state (i.e. threads and interpreters). NewThread: basically just coroutine.create Reset: removes function from the thread * Added Thread Test * Added UserData Test. * remove optional index * Add thread properties * Added Operators & Overrides * Added 2 more methods * improve * Add thread equality test * Remove hash code override that I added. Added this earlier. I realized it shouldn't have been because LuaBase returns reference here. * Add base hash code * base equals
-
- 05 Oct, 2021 1 commit
-
-
Kagamia authored
-
- 09 Sep, 2021 1 commit
-
-
Vinicius Jarina authored
-
- 11 May, 2021 1 commit
-
-
Vlad Soroka authored
-
- 21 Oct, 2020 1 commit
-
-
Bradley Faskowitz authored
For a function on a net object with string parameters, the 'extractor' for a null string would return an object type. This extractor is cached, and on the next invocation, a non-null string parameter would try to be extracted as an object type, which would cause a failure.
-
- 10 May, 2020 1 commit
-
-
Vinicius Jarina authored
-
- 03 May, 2020 2 commits
-
-
Vinicius Jarina authored
* Fixes #375 Possible bug not detecting constructor(.ctor) argument match
-
Vinicius Jarina authored
-
- 19 Apr, 2020 4 commits
-
-
Vinicius Jarina authored
* Fixed #370 Overloaded indexer operators `TryIndexMethods` was testing only the first index method (`get_Item`) * Fixing flaky test.
-
Timothy Walter Lutt authored
* Add crude tests for printing nil in various ways As requested in issue NLua/NLua#353 though all tests seem to pass * Use stringbuilder instead of concat * Simplify Lua function registration * Make print return and assert eq in tests
-
Vinicius Jarina authored
-
Thomas Nind authored
* Made RegisterGlobal maximum recursion level user configurable * Added test for MaximumRecursion field * Added reference to System.Data * Revert "Added test for MaximumRecursion field" This reverts commit d04299638765cdb73111a61288b7654ef51781ec. * Re added test (after fixing accidental whitespace changes) * Revert "Added reference to System.Data" This reverts commit 3e8838383a8d4f3e883bd3209614060fc1c755d1. * Changed TestMaximumRecursion to use NLuaTest.TestTypes.TestClass * Fix for NUnitLite not having `Greater` assertion
-
- 24 Feb, 2020 1 commit
-
-
Vinicius Jarina authored
* Guid has a lot of ctor overload, the `byte[]` was being used instead the `string`. Reorder ctor info before trying to match the parameters.
-
- 18 Jan, 2020 1 commit
-
-
Vinicius Jarina authored
* Lua.Error() will call setjmp and this can cause a crash with CLR on Linux, it seems that calling the setjmp longjmp twice will crash on *nix systems. This should make this issue work a bit better: https://github.com/NLua/NLua/issues/344
-
- 13 Dec, 2019 1 commit
-
-
Vinicius Jarina authored
-
- 11 Dec, 2019 1 commit
-
-
Vinicius Jarina authored
* Related with #340 it seems .NET Core is crashing the process when there is a exception with native/manage frames.
-
- 02 Dec, 2019 1 commit
-
-
Vinicius Jarina authored
-
- 18 Oct, 2019 1 commit
-
-
Vinicius Jarina authored
-
- 14 Sep, 2019 2 commits
-
-
Vinicius Jarina authored
-
Vinicius Jarina authored
-
- 11 Sep, 2019 1 commit
-
-
Vinicius Jarina authored
-
- 23 Aug, 2019 3 commits
-
-
Vinicius Jarina authored
* Release 1.4.21
-
Vinicius Jarina authored
-
Vinicius Jarina authored
-
- 22 Aug, 2019 3 commits
-
-
Vinicius Jarina authored
-
Vinicius Jarina authored
-
Vinicius Jarina authored
-
- 21 Aug, 2019 1 commit
-
-
Vinicius Jarina authored
* Cache invalid method call * Fixed array of byte, sbyte, uint, ulong, short, ushort * Fixed explicity interface calling.
-
- 27 Jul, 2019 1 commit
-
-
Vinicius Jarina authored
-
- 26 Jul, 2019 1 commit
-
-
Vinicius Jarina authored
-
- 30 Mar, 2019 1 commit
-
-
Vinicius Jarina authored
* Release 1.4.12
-
- 29 Mar, 2019 1 commit
-
-
Vinicius Jarina authored
* Added support to Lua integers. * Operator [] and `GetNumber` will still return the `double` regardless of the value for backward compatibility LuaTable.GetObject may have breaks if your code is assuming the value will be always a double boxed. To get long from Lua object use `GetLong` and to get an integer `GetInteger`.
-
- 13 Feb, 2019 1 commit
-
-
Vinicius Jarina authored
* Fixed cleanup of Lua objects on LuaBase finalizer.
-
- 10 Feb, 2019 1 commit
-
-
Vinicius Jarina authored
* Avoid call GetExtensionMethod twice. * `LuaMethodWrapper.Call` cleanup.
-
- 09 Feb, 2019 2 commits
-
-
Vinicius Jarina authored
LuaState.ToString calls luaL_tolstring which can add something to the stack. using lua_tostring.
-
Vinicius Jarina authored
-