mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 22:35:43 +08:00
3b0e93bec9
# What's changed? Add program argument passing to scripts run using the Luau REPL! You can now pass `--program-args` (or shorthand `-a`) to the REPL which will treat all remaining arguments as arguments to pass to executed scripts. These values can be accessed through variadic argument expansion. You can read these values like so: ``` local args = {...} -- gets you an array of all the arguments ``` For example if we run the following script like `luau test.lua -a test1 test2 test3`: ``` -- test.lua print(...) ``` you should get the output: ``` test1 test2 test3 ``` ### Native Code Generation * Improve A64 lowering for vector operations by using vector instructions * Fix lowering issue in IR value location tracking! - A developer reported a divergence between code run in the VM and Native Code Generation which we have now fixed ### New Type Solver * Apply substitution to type families, and emit new constraints to reduce those further * More progress on reducing comparison (`lt/le`)type families * Resolve two major sources of cyclic types in the new solver ### Miscellaneous * Turned internal compiler errors (ICE's) into warnings and errors ------- Co-authored-by: Aaron Weiss <aaronweiss@roblox.com> Co-authored-by: Alexander McCord <amccord@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> --------- Co-authored-by: Aaron Weiss <aaronweiss@roblox.com> Co-authored-by: Alexander McCord <amccord@roblox.com> Co-authored-by: Andy Friesen <afriesen@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com> Co-authored-by: David Cope <dcope@roblox.com> Co-authored-by: Lily Brown <lbrown@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com>
65 lines
1.3 KiB
C++
65 lines
1.3 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#include "ConstraintGeneratorFixture.h"
|
|
#include "Fixture.h"
|
|
#include "doctest.h"
|
|
|
|
LUAU_FASTFLAG(DebugLuauDeferredConstraintResolution);
|
|
|
|
using namespace Luau;
|
|
|
|
static TypeId requireBinding(Scope* scope, const char* name)
|
|
{
|
|
auto b = linearSearchForBinding(scope, name);
|
|
LUAU_ASSERT(b.has_value());
|
|
return *b;
|
|
}
|
|
|
|
TEST_SUITE_BEGIN("ConstraintSolver");
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "constraint_basics")
|
|
{
|
|
solve(R"(
|
|
local a = 55
|
|
local b = a
|
|
)");
|
|
|
|
TypeId bType = requireBinding(rootScope, "b");
|
|
|
|
CHECK("number" == toString(bType));
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "generic_function")
|
|
{
|
|
solve(R"(
|
|
local function id(a)
|
|
return a
|
|
end
|
|
)");
|
|
|
|
TypeId idType = requireBinding(rootScope, "id");
|
|
|
|
CHECK("<a>(a) -> a" == toString(idType));
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(ConstraintGeneratorFixture, "proper_let_generalization")
|
|
{
|
|
solve(R"(
|
|
local function a(c)
|
|
local function d(e)
|
|
return c
|
|
end
|
|
|
|
return d
|
|
end
|
|
|
|
local b = a(5)
|
|
)");
|
|
|
|
TypeId idType = requireBinding(rootScope, "b");
|
|
|
|
CHECK("(unknown) -> number" == toString(idType));
|
|
}
|
|
|
|
TEST_SUITE_END();
|