2021-10-30 04:25:12 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
2022-04-15 07:57:43 +08:00
|
|
|
#include "Luau/Normalize.h"
|
2021-11-05 10:34:35 +08:00
|
|
|
#include "Luau/Scope.h"
|
2021-10-30 04:25:12 +08:00
|
|
|
#include "Luau/TypeInfer.h"
|
|
|
|
|
|
|
|
#include "Fixture.h"
|
|
|
|
|
|
|
|
#include "doctest.h"
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
LUAU_FASTFLAG(LuauSolverV2)
|
2024-09-21 00:53:26 +08:00
|
|
|
LUAU_FASTFLAG(LuauUseNormalizeIntersectionLimit)
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
using namespace Luau;
|
|
|
|
|
2022-01-28 07:46:05 +08:00
|
|
|
namespace
|
|
|
|
{
|
2022-06-17 09:05:14 +08:00
|
|
|
std::optional<WithPredicate<TypePackId>> magicFunctionInstanceIsA(
|
2024-08-02 22:30:04 +08:00
|
|
|
TypeChecker& typeChecker,
|
|
|
|
const ScopePtr& scope,
|
|
|
|
const AstExprCall& expr,
|
|
|
|
WithPredicate<TypePackId> withPredicate
|
|
|
|
)
|
2022-01-28 07:46:05 +08:00
|
|
|
{
|
|
|
|
if (expr.args.size != 1)
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
auto index = expr.func->as<Luau::AstExprIndexName>();
|
|
|
|
auto str = expr.args.data[0]->as<Luau::AstExprConstantString>();
|
|
|
|
if (!index || !str)
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
std::optional<LValue> lvalue = tryGetLValue(*index->expr);
|
|
|
|
std::optional<TypeFun> tfun = scope->lookupType(std::string(str->value.data, str->value.size));
|
|
|
|
if (!lvalue || !tfun)
|
|
|
|
return std::nullopt;
|
|
|
|
|
2023-03-11 04:21:07 +08:00
|
|
|
ModulePtr module = typeChecker.currentModule;
|
|
|
|
TypePackId booleanPack = module->internalTypes.addTypePack({typeChecker.booleanType});
|
2022-06-17 09:05:14 +08:00
|
|
|
return WithPredicate<TypePackId>{booleanPack, {IsAPredicate{std::move(*lvalue), expr.location, tfun->type}}};
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
2023-02-11 03:40:38 +08:00
|
|
|
void dcrMagicRefinementInstanceIsA(const MagicRefinementContext& ctx)
|
2022-12-03 02:09:59 +08:00
|
|
|
{
|
2023-02-11 03:40:38 +08:00
|
|
|
if (ctx.callSite->args.size != 1 || ctx.discriminantTypes.empty())
|
|
|
|
return;
|
2022-12-03 02:09:59 +08:00
|
|
|
|
|
|
|
auto index = ctx.callSite->func->as<Luau::AstExprIndexName>();
|
|
|
|
auto str = ctx.callSite->args.data[0]->as<Luau::AstExprConstantString>();
|
|
|
|
if (!index || !str)
|
2023-02-11 03:40:38 +08:00
|
|
|
return;
|
2022-12-03 02:09:59 +08:00
|
|
|
|
2023-02-11 03:40:38 +08:00
|
|
|
std::optional<TypeId> discriminantTy = ctx.discriminantTypes[0];
|
|
|
|
if (!discriminantTy)
|
|
|
|
return;
|
2022-12-03 02:09:59 +08:00
|
|
|
|
|
|
|
std::optional<TypeFun> tfun = ctx.scope->lookupType(std::string(str->value.data, str->value.size));
|
|
|
|
if (!tfun)
|
2023-02-11 03:40:38 +08:00
|
|
|
return;
|
2022-12-03 02:09:59 +08:00
|
|
|
|
2023-02-11 03:40:38 +08:00
|
|
|
LUAU_ASSERT(get<BlockedType>(*discriminantTy));
|
|
|
|
asMutable(*discriminantTy)->ty.emplace<BoundType>(tfun->type);
|
2022-12-03 02:09:59 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
struct RefinementClassFixture : BuiltinsFixture
|
2022-01-28 07:46:05 +08:00
|
|
|
{
|
|
|
|
RefinementClassFixture()
|
|
|
|
{
|
2023-03-11 04:21:07 +08:00
|
|
|
TypeArena& arena = frontend.globals.globalTypes;
|
|
|
|
NotNull<Scope> scope{frontend.globals.globalScope.get()};
|
2022-01-28 07:46:05 +08:00
|
|
|
|
2023-05-06 05:52:49 +08:00
|
|
|
std::optional<TypeId> rootSuper = std::make_optional(builtinTypes->classType);
|
2023-01-05 04:53:17 +08:00
|
|
|
|
2022-01-28 07:46:05 +08:00
|
|
|
unfreeze(arena);
|
2024-07-17 22:43:31 +08:00
|
|
|
TypeId vec3 = arena.addType(ClassType{"Vector3", {}, rootSuper, std::nullopt, {}, nullptr, "Test", {}});
|
2023-01-05 04:53:17 +08:00
|
|
|
getMutable<ClassType>(vec3)->props = {
|
2023-03-11 04:21:07 +08:00
|
|
|
{"X", Property{builtinTypes->numberType}},
|
|
|
|
{"Y", Property{builtinTypes->numberType}},
|
|
|
|
{"Z", Property{builtinTypes->numberType}},
|
2022-01-28 07:46:05 +08:00
|
|
|
};
|
|
|
|
|
2024-07-17 22:43:31 +08:00
|
|
|
TypeId inst = arena.addType(ClassType{"Instance", {}, rootSuper, std::nullopt, {}, nullptr, "Test", {}});
|
2022-01-28 07:46:05 +08:00
|
|
|
|
2023-03-11 04:21:07 +08:00
|
|
|
TypePackId isAParams = arena.addTypePack({inst, builtinTypes->stringType});
|
|
|
|
TypePackId isARets = arena.addTypePack({builtinTypes->booleanType});
|
2023-01-05 04:53:17 +08:00
|
|
|
TypeId isA = arena.addType(FunctionType{isAParams, isARets});
|
|
|
|
getMutable<FunctionType>(isA)->magicFunction = magicFunctionInstanceIsA;
|
|
|
|
getMutable<FunctionType>(isA)->dcrMagicRefinement = dcrMagicRefinementInstanceIsA;
|
2022-01-28 07:46:05 +08:00
|
|
|
|
2023-01-05 04:53:17 +08:00
|
|
|
getMutable<ClassType>(inst)->props = {
|
2023-03-11 04:21:07 +08:00
|
|
|
{"Name", Property{builtinTypes->stringType}},
|
2022-01-28 07:46:05 +08:00
|
|
|
{"IsA", Property{isA}},
|
|
|
|
};
|
|
|
|
|
2024-07-17 22:43:31 +08:00
|
|
|
TypeId folder = frontend.globals.globalTypes.addType(ClassType{"Folder", {}, inst, std::nullopt, {}, nullptr, "Test", {}});
|
|
|
|
TypeId part = frontend.globals.globalTypes.addType(ClassType{"Part", {}, inst, std::nullopt, {}, nullptr, "Test", {}});
|
2023-01-05 04:53:17 +08:00
|
|
|
getMutable<ClassType>(part)->props = {
|
2022-01-28 07:46:05 +08:00
|
|
|
{"Position", Property{vec3}},
|
|
|
|
};
|
|
|
|
|
2023-03-11 04:21:07 +08:00
|
|
|
frontend.globals.globalScope->exportedTypeBindings["Vector3"] = TypeFun{{}, vec3};
|
|
|
|
frontend.globals.globalScope->exportedTypeBindings["Instance"] = TypeFun{{}, inst};
|
|
|
|
frontend.globals.globalScope->exportedTypeBindings["Folder"] = TypeFun{{}, folder};
|
|
|
|
frontend.globals.globalScope->exportedTypeBindings["Part"] = TypeFun{{}, part};
|
2022-05-27 06:08:16 +08:00
|
|
|
|
2023-03-11 04:21:07 +08:00
|
|
|
for (const auto& [name, ty] : frontend.globals.globalScope->exportedTypeBindings)
|
2022-05-27 06:08:16 +08:00
|
|
|
persist(ty.type);
|
|
|
|
|
2023-03-11 04:21:07 +08:00
|
|
|
freeze(frontend.globals.globalTypes);
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
TEST_SUITE_BEGIN("RefinementTest");
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "is_truthy_constraint")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v: string?)
|
|
|
|
if v then
|
|
|
|
local s = v
|
|
|
|
else
|
|
|
|
local s = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({5, 26})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "invert_is_truthy_constraint")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v: string?)
|
|
|
|
if not v then
|
|
|
|
local s = v
|
|
|
|
else
|
|
|
|
local s = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 26})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "parenthesized_expressions_are_followed_through")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v: string?)
|
|
|
|
if (not v) then
|
|
|
|
local s = v
|
|
|
|
else
|
|
|
|
local s = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 26})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "and_constraint")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(a: string?, b: number?)
|
|
|
|
if a and b then
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
else
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({4, 26})));
|
2021-10-30 04:25:12 +08:00
|
|
|
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({6, 26})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({7, 26})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "not_and_constraint")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(a: string?, b: number?)
|
|
|
|
if not (a and b) then
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
else
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({4, 26})));
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 26})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({7, 26})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "or_predicate_with_truthy_predicates")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(a: string?, b: number?)
|
|
|
|
if a or b then
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
else
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({4, 26})));
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({6, 26})));
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({7, 26})));
|
2022-11-05 01:33:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "a_and_b_or_a_and_c")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(a: string?, b: number?, c: boolean)
|
|
|
|
if (a and b) or (a and c) then
|
|
|
|
local foo = a
|
|
|
|
local bar = b
|
|
|
|
local baz = c
|
|
|
|
else
|
|
|
|
local foo = a
|
|
|
|
local bar = b
|
|
|
|
local baz = c
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({4, 28})));
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2022-11-05 01:33:22 +08:00
|
|
|
CHECK_EQ("boolean", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
else
|
|
|
|
CHECK_EQ("true", toString(requireTypeAtPosition({5, 28}))); // oh no! :(
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({8, 28})));
|
|
|
|
CHECK_EQ("boolean", toString(requireTypeAtPosition({9, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "type_assertion_expr_carry_its_constraints")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function g(a: number?, b: string?)
|
|
|
|
if (a :: any) and (b :: any) then
|
|
|
|
local x = a
|
|
|
|
local y = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2022-11-05 01:33:22 +08:00
|
|
|
{
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({4, 26})));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We're going to drop support for type refinements through type assertions.
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({4, 26})));
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "typeguard_in_if_condition_position")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
2023-10-21 09:10:30 +08:00
|
|
|
CheckResult result = check(R"(
|
2023-08-05 03:18:54 +08:00
|
|
|
function f(s: any, t: unknown)
|
2021-10-30 04:25:12 +08:00
|
|
|
if type(s) == "number" then
|
|
|
|
local n = s
|
|
|
|
end
|
2023-08-05 03:18:54 +08:00
|
|
|
if type(t) == "number" then
|
|
|
|
local n = t
|
|
|
|
end
|
2021-10-30 04:25:12 +08:00
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2023-10-21 09:10:30 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2023-08-05 03:18:54 +08:00
|
|
|
|
|
|
|
// DCR changes refinements to preserve error suppression.
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-08-05 03:18:54 +08:00
|
|
|
CHECK_EQ("*error-type* | number", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
else
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({3, 26})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({6, 26})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "typeguard_in_assert_position")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
2024-08-10 01:18:20 +08:00
|
|
|
function f(a)
|
|
|
|
assert(type(a) == "number")
|
|
|
|
local b = a
|
|
|
|
return b
|
|
|
|
end
|
2021-10-30 04:25:12 +08:00
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-11-11 06:53:13 +08:00
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK("<a>(a) -> a & number" == toString(requireType("f")));
|
|
|
|
else
|
|
|
|
CHECK("<a>(a) -> number" == toString(requireType("f")));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2024-03-16 07:37:39 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknown_to_table_then_test_a_prop")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: unknown): string?
|
|
|
|
if typeof(x) == "table" then
|
|
|
|
if typeof(x.foo) == "string" then
|
|
|
|
return x.foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-04-20 05:48:02 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2024-03-16 07:37:39 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < result.errors.size(); i++)
|
|
|
|
{
|
|
|
|
const UnknownProperty* up = get<UnknownProperty>(result.errors[i]);
|
|
|
|
REQUIRE_EQ("foo", up->key);
|
|
|
|
REQUIRE_EQ("unknown", toString(up->table));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknown_to_table_then_test_a_nested_prop")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: unknown): string?
|
|
|
|
if typeof(x) == "table" then
|
|
|
|
-- this should error, `x.foo` is an unknown property
|
|
|
|
if typeof(x.foo.bar) == "string" then
|
|
|
|
return x.foo.bar
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-03-16 07:37:39 +08:00
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
const UnknownProperty* up = get<UnknownProperty>(result.errors[0]);
|
|
|
|
REQUIRE_EQ("bar", up->key);
|
|
|
|
REQUIRE_EQ("unknown", toString(up->table));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < result.errors.size(); i++)
|
|
|
|
{
|
|
|
|
const UnknownProperty* up = get<UnknownProperty>(result.errors[i]);
|
|
|
|
REQUIRE_EQ("foo", up->key);
|
|
|
|
REQUIRE_EQ("unknown", toString(up->table));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknown_to_table_then_test_a_tested_nested_prop")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: unknown): string?
|
|
|
|
if typeof(x) == "table" then
|
|
|
|
if typeof(x.foo) == "table" and typeof(x.foo.bar) == "string" then
|
|
|
|
return x.foo.bar
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-03-16 07:37:39 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(3, result);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < result.errors.size(); i++)
|
|
|
|
{
|
|
|
|
const UnknownProperty* up = get<UnknownProperty>(result.errors[i]);
|
|
|
|
REQUIRE_EQ("foo", up->key);
|
|
|
|
REQUIRE_EQ("unknown", toString(up->table));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "call_an_incompatible_function_after_using_typeguard")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: number)
|
|
|
|
return x
|
|
|
|
end
|
|
|
|
|
2023-08-05 03:18:54 +08:00
|
|
|
local function g(x: unknown)
|
|
|
|
if type(x) == "string" then
|
|
|
|
f(x)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function h(x: any)
|
2021-10-30 04:25:12 +08:00
|
|
|
if type(x) == "string" then
|
|
|
|
f(x)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-10 01:18:20 +08:00
|
|
|
LUAU_REQUIRE_ERROR_COUNT(2, result);
|
2022-11-11 06:53:13 +08:00
|
|
|
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK("Type 'string' could not be converted into 'number'" == toString(result.errors[0]));
|
|
|
|
CHECK(Location{{ 7, 18}, {7, 19}} == result.errors[0].location);
|
2023-08-05 03:18:54 +08:00
|
|
|
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK("Type 'string' could not be converted into 'number'" == toString(result.errors[1]));
|
|
|
|
CHECK(Location{{ 13, 18}, {13, 19}} == result.errors[1].location);
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "impossible_type_narrow_is_not_an_error")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
// This unit test serves as a reminder to not implement this warning until Luau is intelligent enough.
|
|
|
|
// For instance, getting a value out of the indexer and checking whether the value exists is not an error.
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t: {string} = {"a", "b", "c"}
|
|
|
|
local v = t[4]
|
|
|
|
if not v then
|
|
|
|
t[4] = "d"
|
|
|
|
else
|
|
|
|
print(v)
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "truthy_constraint_on_properties")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t: {x: number?} = {x = 1}
|
|
|
|
|
|
|
|
if t.x then
|
2022-12-03 02:09:59 +08:00
|
|
|
local t2 = t
|
|
|
|
local foo = t.x
|
2021-10-30 04:25:12 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
local bar = t.x
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-12-03 02:09:59 +08:00
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2022-12-03 02:09:59 +08:00
|
|
|
{
|
2024-08-10 01:18:20 +08:00
|
|
|
// CLI-115281 - Types produced by refinements don't always get simplified
|
|
|
|
CHECK("{ x: number? } & { x: ~(false?) }" == toString(requireTypeAtPosition({4, 23})));
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK("number" == toString(requireTypeAtPosition({5, 26})));
|
2022-12-03 02:09:59 +08:00
|
|
|
}
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
CHECK_EQ("number?", toString(requireType("bar")));
|
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "index_on_a_refined_property")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t: {x: {y: string}?} = {x = {y = "hello!"}}
|
|
|
|
|
|
|
|
if t.x then
|
|
|
|
print(t.x.y)
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "assert_non_binary_expressions_actually_resolve_constraints")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local foo: string? = "hello"
|
|
|
|
assert(foo)
|
|
|
|
local bar: string = foo
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "lvalue_is_equal_to_another_lvalue")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: (string | number)?, b: boolean?)
|
|
|
|
if a == b then
|
|
|
|
local foo, bar = a, b
|
|
|
|
else
|
|
|
|
local foo, bar = a, b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 33})), "(number | string)?"); // a == b
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 36})), "boolean?"); // a == b
|
2021-10-30 04:25:12 +08:00
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 33})), "(number | string)?"); // a ~= b
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 36})), "boolean?"); // a ~= b
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "lvalue_is_equal_to_a_term")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: (string | number)?)
|
|
|
|
if a == 1 then
|
|
|
|
local foo = a
|
|
|
|
else
|
|
|
|
local foo = a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 28})), "(number | string)?"); // a == 1;
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 28})), "(number | string)?"); // a ~= 1
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "term_is_equal_to_an_lvalue")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: (string | number)?)
|
|
|
|
if "hello" == a then
|
|
|
|
local foo = a
|
|
|
|
else
|
|
|
|
local foo = a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2022-11-05 01:33:22 +08:00
|
|
|
{
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 28})), R"("hello")"); // a == "hello"
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 28})), R"(((string & ~"hello") | number)?)"); // a ~= "hello"
|
2022-11-05 01:33:22 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 28})), R"("hello")"); // a == "hello"
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 28})), R"((number | string)?)"); // a ~= "hello"
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "lvalue_is_not_nil")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: (string | number)?)
|
|
|
|
if a ~= nil then
|
|
|
|
local foo = a
|
|
|
|
else
|
|
|
|
local foo = a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-02 22:30:04 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 28})), "number | string"); // a ~= nil
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-04-20 05:48:02 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 28})), "nil"); // a == nil :)
|
|
|
|
else
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({5, 28})), "(number | string)?"); // a == nil
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "free_type_is_equal_to_an_lvalue")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a, b: string?)
|
|
|
|
if a == b then
|
|
|
|
local foo, bar = a, b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-02-16 10:04:39 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 33})), "unknown"); // a == b
|
2023-09-23 03:12:15 +08:00
|
|
|
else
|
2024-02-16 10:04:39 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 33})), "a"); // a == b
|
2023-09-23 03:12:15 +08:00
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 36})), "string?"); // a == b
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "unknown_lvalue_is_not_synonymous_with_other_on_not_equal")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: any, b: {x: number}?)
|
|
|
|
if a ~= b then
|
|
|
|
local foo, bar = a, b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-02 22:30:04 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 33})), "any"); // a ~= b
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-09-30 09:13:05 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 36})), "{ x: number }?"); // a ~= b
|
|
|
|
else
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({3, 36})), "{| x: number |}?"); // a ~= b
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "string_not_equal_to_string_or_nil")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t: {string} = {"hello"}
|
|
|
|
|
|
|
|
local a: string = t[1]
|
|
|
|
local b: string? = nil
|
|
|
|
if a ~= b then
|
|
|
|
local foo, bar = a, b
|
|
|
|
else
|
|
|
|
local foo, bar = a, b
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({6, 29})), "string"); // a ~= b
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({6, 32})), "string?"); // a ~= b
|
2022-11-05 01:33:22 +08:00
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-03-04 04:21:14 +08:00
|
|
|
{
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({8, 29})), "string?"); // a == b
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({8, 32})), "string?"); // a == b
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({8, 29})), "string"); // a == b
|
|
|
|
CHECK_EQ(toString(requireTypeAtPosition({8, 32})), "string?"); // a == b
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "narrow_property_of_a_bounded_variable")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t
|
|
|
|
local u: {x: number?} = {x = nil}
|
|
|
|
t = u
|
|
|
|
|
|
|
|
if t.x then
|
|
|
|
local foo: number = t.x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_narrow_to_vector")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x)
|
|
|
|
if type(x) == "vector" then
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2022-05-20 08:02:24 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-01-28 07:46:05 +08:00
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK_EQ("never", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
else
|
|
|
|
CHECK_EQ("*error-type*", toString(requireTypeAtPosition({3, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "nonoptional_type_can_narrow_to_nil_if_sense_is_true")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t = {"hello"}
|
|
|
|
local v = t[2]
|
|
|
|
if type(v) == "nil" then
|
|
|
|
local foo = v
|
|
|
|
else
|
|
|
|
local foo = v
|
|
|
|
end
|
|
|
|
|
|
|
|
if not (type(v) ~= "nil") then
|
|
|
|
local foo = v
|
|
|
|
else
|
|
|
|
local foo = v
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
// CLI-115281 Types produced by refinements do not consistently get simplified
|
|
|
|
CHECK_EQ("(nil & string)?", toString(requireTypeAtPosition({4, 24}))); // type(v) == "nil"
|
|
|
|
CHECK_EQ("(boolean | buffer | class | function | number | string | table | thread) & string", toString(requireTypeAtPosition({6, 24}))); // type(v) ~= "nil"
|
2021-10-30 04:25:12 +08:00
|
|
|
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK_EQ("(nil & string)?", toString(requireTypeAtPosition({10, 24}))); // equivalent to type(v) == "nil"
|
|
|
|
CHECK_EQ("(boolean | buffer | class | function | number | string | table | thread) & string", toString(requireTypeAtPosition({12, 24}))); // equivalent to type(v) ~= "nil"
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({4, 24}))); // type(v) == "nil"
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 24}))); // type(v) ~= "nil"
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({10, 24}))); // equivalent to type(v) == "nil"
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 24}))); // equivalent to type(v) ~= "nil"
|
|
|
|
}
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "typeguard_not_to_be_string")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string | number | boolean)
|
|
|
|
if type(x) ~= "string" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("boolean | number", toString(requireTypeAtPosition({3, 28}))); // type(x) ~= "string"
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 28}))); // type(x) == "string"
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "typeguard_narrows_for_table")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string | {x: number} | {y: boolean})
|
|
|
|
if type(x) == "table" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-09-30 09:13:05 +08:00
|
|
|
CHECK_EQ("{ x: number } | { y: boolean }", toString(requireTypeAtPosition({3, 28}))); // type(x) == "table"
|
|
|
|
else
|
|
|
|
CHECK_EQ("{| x: number |} | {| y: boolean |}", toString(requireTypeAtPosition({3, 28}))); // type(x) == "table"
|
2024-08-02 22:30:04 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 28}))); // type(x) ~= "table"
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "typeguard_narrows_for_functions")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function weird(x: string | ((number) -> string))
|
|
|
|
if type(x) == "function" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("(number) -> string", toString(requireTypeAtPosition({3, 28}))); // type(x) == "function"
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 28}))); // type(x) ~= "function"
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_guard_can_filter_for_intersection_of_tables")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type XYCoord = {x: number} & {y: number}
|
|
|
|
local function f(t: XYCoord?)
|
|
|
|
if type(t) == "table" then
|
|
|
|
local foo = t
|
|
|
|
else
|
|
|
|
local foo = t
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2023-01-21 04:27:03 +08:00
|
|
|
ToStringOptions opts;
|
|
|
|
opts.exhaustive = true;
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-09-30 09:13:05 +08:00
|
|
|
CHECK_EQ("{ x: number } & { y: number }", toString(requireTypeAtPosition({4, 28}), opts));
|
|
|
|
else
|
|
|
|
CHECK_EQ("{| x: number |} & {| y: number |}", toString(requireTypeAtPosition({4, 28}), opts));
|
2021-10-30 04:25:12 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({6, 28})));
|
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_guard_can_filter_for_overloaded_function")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type SomeOverloadedFunction = ((number) -> string) & ((string) -> number)
|
|
|
|
local function f(g: SomeOverloadedFunction?)
|
|
|
|
if type(g) == "function" then
|
|
|
|
local foo = g
|
|
|
|
else
|
|
|
|
local foo = g
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("((number) -> string) & ((string) -> number)", toString(requireTypeAtPosition({4, 28})));
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({6, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-07-08 09:22:39 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_guard_narrowed_into_nothingness")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(t: {x: number})
|
|
|
|
if type(t) ~= "table" then
|
|
|
|
local foo = t
|
|
|
|
error(("Expected a table, got %s"):format(type(t)))
|
|
|
|
end
|
|
|
|
|
|
|
|
return t.x + 1
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
// CLI-115281 Types produced by refinements do not consistently get simplified
|
|
|
|
CHECK_EQ("{ x: number } & ~table", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
CHECK_EQ("never", toString(requireTypeAtPosition({3, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "not_a_or_not_b")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: number?, b: number?)
|
|
|
|
if (not a) or (not b) then
|
|
|
|
local foo = a
|
|
|
|
local bar = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({4, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "not_a_or_not_b2")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: number?, b: number?)
|
|
|
|
if not (a and b) then
|
|
|
|
local foo = a
|
|
|
|
local bar = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({4, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "not_a_and_not_b")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: number?, b: number?)
|
|
|
|
if (not a) and (not b) then
|
|
|
|
local foo = a
|
|
|
|
local bar = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({4, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "not_a_and_not_b2")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: number?, b: number?)
|
|
|
|
if not (a or b) then
|
|
|
|
local foo = a
|
|
|
|
local bar = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({4, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "either_number_or_string")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
2023-08-05 03:18:54 +08:00
|
|
|
local function f(x: any, y: unknown)
|
2021-10-30 04:25:12 +08:00
|
|
|
if type(x) == "number" or type(x) == "string" then
|
|
|
|
local foo = x
|
|
|
|
end
|
2023-08-05 03:18:54 +08:00
|
|
|
if type(y) == "number" or type(y) == "string" then
|
|
|
|
local foo = y
|
|
|
|
end
|
2021-10-30 04:25:12 +08:00
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-08-05 03:18:54 +08:00
|
|
|
CHECK_EQ("*error-type* | number | string", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
else
|
|
|
|
CHECK_EQ("number | string", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number | string", toString(requireTypeAtPosition({6, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "not_t_or_some_prop_of_t")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(t: {x: boolean}?)
|
|
|
|
if not t or t.x then
|
|
|
|
local foo = t
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
// CLI-115281 Types produced by refinements do not consistently get simplified
|
|
|
|
CHECK_EQ("({ x: boolean } & { x: ~(false?) })?", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
}
|
2023-03-04 04:21:14 +08:00
|
|
|
else
|
|
|
|
CHECK_EQ("{| x: boolean |}?", toString(requireTypeAtPosition({3, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "assert_a_to_be_truthy_then_assert_a_to_be_number")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local a: (number | string)?
|
|
|
|
assert(a)
|
|
|
|
local b = a
|
|
|
|
assert(type(a) == "number")
|
|
|
|
local c = a
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("number | string", toString(requireTypeAtPosition({3, 18})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({5, 18})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "merge_should_be_fully_agnostic_of_hashmap_ordering")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
// This bug came up because there was a mistake in Luau::merge where zipping on two maps would produce the wrong merged result.
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(b: string | { x: string }, a)
|
|
|
|
assert(type(a) == "string")
|
|
|
|
assert(type(b) == "string" or type(b) == "table")
|
|
|
|
|
|
|
|
if type(b) == "string" then
|
|
|
|
local foo = b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_the_correct_types_opposite_of_when_a_is_not_number_or_string")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: string | number | boolean)
|
|
|
|
if type(a) ~= "number" and type(a) ~= "string" then
|
|
|
|
local foo = a
|
|
|
|
else
|
|
|
|
local foo = a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("boolean", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number | string", toString(requireTypeAtPosition({5, 28})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "is_truthy_constraint_ifelse_expression")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v:string?)
|
|
|
|
return if v then v else tostring(v)
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({2, 29})));
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({2, 45})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "invert_is_truthy_constraint_ifelse_expression")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v:string?)
|
|
|
|
return if not v then tostring(v) else v
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({2, 42})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({2, 50})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_comparison_ifelse_expression")
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function returnOne(x)
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
function f(v:any)
|
|
|
|
return if typeof(v) == "number" then v else returnOne(v)
|
|
|
|
end
|
2023-08-05 03:18:54 +08:00
|
|
|
|
|
|
|
function g(v:unknown)
|
|
|
|
return if typeof(v) == "number" then v else returnOne(v)
|
|
|
|
end
|
2021-10-30 04:25:12 +08:00
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-08-05 03:18:54 +08:00
|
|
|
{
|
|
|
|
CHECK_EQ("*error-type* | number", toString(requireTypeAtPosition({6, 49})));
|
|
|
|
CHECK_EQ("*error-type* | ~number", toString(requireTypeAtPosition({6, 66})));
|
|
|
|
}
|
2022-12-10 03:57:01 +08:00
|
|
|
else
|
2023-08-05 03:18:54 +08:00
|
|
|
{
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({6, 49})));
|
2022-12-10 03:57:01 +08:00
|
|
|
CHECK_EQ("any", toString(requireTypeAtPosition({6, 66})));
|
2023-08-05 03:18:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({10, 49})));
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-03-02 02:45:26 +08:00
|
|
|
CHECK_EQ("~number", toString(requireTypeAtPosition({10, 66})));
|
2023-08-05 03:18:54 +08:00
|
|
|
else
|
|
|
|
CHECK_EQ("unknown", toString(requireTypeAtPosition({10, 66})));
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
2023-07-08 04:10:48 +08:00
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "is_truthy_constraint_while_expression")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v:string?)
|
|
|
|
while v do
|
|
|
|
local foo = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "invert_is_truthy_constraint_while_expression")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
function f(v:string?)
|
|
|
|
while not v do
|
|
|
|
local foo = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_the_correct_types_opposite_of_while_a_is_not_number_or_string")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(a: string | number | boolean)
|
|
|
|
while type(a) ~= "number" and type(a) ~= "string" do
|
|
|
|
local foo = a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("boolean", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
}
|
|
|
|
|
2022-05-14 03:36:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "correctly_lookup_a_shadowed_local_that_which_was_previously_refined")
|
2022-01-07 07:26:14 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local foo: string? = "hi"
|
|
|
|
assert(foo)
|
|
|
|
local foo: number = 5
|
|
|
|
print(foo:sub(1, 1))
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Type 'number' does not have key 'sub'", toString(result.errors[0]));
|
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "correctly_lookup_property_whose_base_was_previously_refined")
|
2022-01-07 07:26:14 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type T = {x: string | number}
|
|
|
|
local t: T? = {x = "hi"}
|
|
|
|
if t then
|
|
|
|
if type(t.x) == "string" then
|
|
|
|
local foo = t.x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 30})));
|
|
|
|
}
|
|
|
|
|
2022-01-15 00:20:09 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "correctly_lookup_property_whose_base_was_previously_refined2")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type T = { x: { y: number }? }
|
|
|
|
|
|
|
|
local function f(t: T?)
|
|
|
|
if t and t.x then
|
|
|
|
local foo = t.x.y
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({5, 32})));
|
|
|
|
}
|
|
|
|
|
2021-12-11 06:05:05 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "apply_refinements_on_astexprindexexpr_whose_subscript_expr_is_constant_string")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type T = { [string]: { prop: number }? }
|
|
|
|
local t: T = {}
|
2022-01-07 07:26:14 +08:00
|
|
|
|
2021-12-11 06:05:05 +08:00
|
|
|
if t["hello"] then
|
|
|
|
local foo = t["hello"].prop
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2022-01-28 07:46:05 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "discriminate_from_truthiness_of_x")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type T = {tag: "missing", x: nil} | {tag: "exists", x: string}
|
|
|
|
|
|
|
|
local function f(t: T)
|
|
|
|
if t.x then
|
|
|
|
local foo = t
|
|
|
|
else
|
|
|
|
local bar = t
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
// CLI-115281 Types produced by refinements do not consistently get simplified
|
|
|
|
CHECK("{ tag: \"exists\", x: string } & { x: ~(false?) }" == toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK("({ tag: \"exists\", x: string } & { x: ~~(false?) }) | { tag: \"missing\", x: nil }" == toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
2022-12-03 02:09:59 +08:00
|
|
|
else
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
CHECK_EQ(R"({| tag: "exists", x: string |})", toString(requireTypeAtPosition({5, 28})));
|
2022-12-03 02:09:59 +08:00
|
|
|
CHECK_EQ(R"({| tag: "exists", x: string |} | {| tag: "missing", x: nil |})", toString(requireTypeAtPosition({7, 28})));
|
2024-08-10 01:18:20 +08:00
|
|
|
}
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "discriminate_tag")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Cat = {tag: "Cat", name: string, catfood: string}
|
|
|
|
type Dog = {tag: "Dog", name: string, dogfood: string}
|
|
|
|
type Animal = Cat | Dog
|
|
|
|
|
|
|
|
local function f(animal: Animal)
|
|
|
|
if animal.tag == "Cat" then
|
2022-12-03 02:09:59 +08:00
|
|
|
local cat = animal
|
2022-01-28 07:46:05 +08:00
|
|
|
elseif animal.tag == "Dog" then
|
2022-12-03 02:09:59 +08:00
|
|
|
local dog = animal
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2023-05-20 03:37:30 +08:00
|
|
|
CHECK_EQ("Cat", toString(requireTypeAtPosition({7, 33})));
|
|
|
|
CHECK_EQ("Dog", toString(requireTypeAtPosition({9, 33})));
|
2022-12-03 02:09:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "discriminate_tag_with_implicit_else")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Cat = {tag: "Cat", name: string, catfood: string}
|
|
|
|
type Dog = {tag: "Dog", name: string, dogfood: string}
|
|
|
|
type Animal = Cat | Dog
|
|
|
|
|
|
|
|
local function f(animal: Animal)
|
|
|
|
if animal.tag == "Cat" then
|
|
|
|
local cat = animal
|
|
|
|
else
|
|
|
|
local dog = animal
|
2022-01-28 07:46:05 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2023-05-20 03:37:30 +08:00
|
|
|
CHECK_EQ("Cat", toString(requireTypeAtPosition({7, 33})));
|
|
|
|
CHECK_EQ("Dog", toString(requireTypeAtPosition({9, 33})));
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
2022-02-05 00:45:57 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "and_or_peephole_refinement")
|
2022-01-28 07:46:05 +08:00
|
|
|
{
|
2022-02-05 00:45:57 +08:00
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function len(a: {any})
|
|
|
|
return a and #a or nil
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "narrow_boolean_to_true_or_false")
|
|
|
|
{
|
2022-01-28 07:46:05 +08:00
|
|
|
CheckResult result = check(R"(
|
2022-02-05 00:45:57 +08:00
|
|
|
local function f(x: boolean)
|
|
|
|
if x then
|
2022-10-22 01:54:01 +08:00
|
|
|
local foo = x
|
2022-02-05 00:45:57 +08:00
|
|
|
else
|
2022-10-22 01:54:01 +08:00
|
|
|
local foo = x
|
2022-02-05 00:45:57 +08:00
|
|
|
end
|
2022-01-28 07:46:05 +08:00
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-10-22 01:54:01 +08:00
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("true", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("false", toString(requireTypeAtPosition({5, 28})));
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
2022-02-05 00:45:57 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "discriminate_on_properties_of_disjoint_tables_where_that_property_is_true_or_false")
|
2022-01-28 07:46:05 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
2022-02-05 00:45:57 +08:00
|
|
|
type Ok<T> = { ok: true, value: T }
|
|
|
|
type Err<E> = { ok: false, error: E }
|
|
|
|
type Result<T, E> = Ok<T> | Err<E>
|
|
|
|
|
|
|
|
local function apply<T, E>(t: Result<T, E>, f: (T) -> (), g: (E) -> ())
|
|
|
|
if t.ok then
|
|
|
|
f(t.value)
|
|
|
|
else
|
|
|
|
g(t.error)
|
|
|
|
end
|
2022-01-28 07:46:05 +08:00
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2022-02-25 07:53:37 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "refine_a_property_not_to_be_nil_through_an_intersection_table")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type T = {} & {f: ((string) -> string)?}
|
|
|
|
local function f(t: T, x)
|
|
|
|
if t.f then
|
|
|
|
t.f(x)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2022-01-28 07:46:05 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "discriminate_from_isa_of_x")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type T = {tag: "Part", x: Part} | {tag: "Folder", x: Folder}
|
|
|
|
|
|
|
|
local function f(t: T)
|
|
|
|
if t.x:IsA("Part") then
|
|
|
|
local foo = t
|
|
|
|
else
|
|
|
|
local bar = t
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2023-09-30 09:13:05 +08:00
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-09-30 09:13:05 +08:00
|
|
|
{
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK(R"({ tag: "Part", x: Part })" == toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK(R"({ tag: "Folder", x: Folder })" == toString(requireTypeAtPosition({7, 28})));
|
2023-09-30 09:13:05 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ(R"({| tag: "Part", x: Part |})", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK_EQ(R"({| tag: "Folder", x: Folder |})", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "typeguard_cast_free_table_to_vector")
|
|
|
|
{
|
2024-08-10 01:18:20 +08:00
|
|
|
// CLI-115286 - Refining via type(x) == 'vector' does not work in the new solver
|
2024-08-31 04:16:51 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauSolverV2, false};
|
2024-08-10 01:18:20 +08:00
|
|
|
|
2022-01-28 07:46:05 +08:00
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(vec)
|
|
|
|
local X, Y, Z = vec.X, vec.Y, vec.Z
|
|
|
|
|
|
|
|
if type(vec) == "vector" then
|
|
|
|
local foo = vec
|
|
|
|
elseif typeof(vec) == "Instance" then
|
|
|
|
local foo = vec
|
|
|
|
else
|
|
|
|
local foo = vec
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2022-05-20 08:02:24 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-01-28 07:46:05 +08:00
|
|
|
|
|
|
|
CHECK_EQ("Vector3", toString(requireTypeAtPosition({5, 28}))); // type(vec) == "vector"
|
|
|
|
|
2022-07-08 09:22:39 +08:00
|
|
|
CHECK_EQ("never", toString(requireTypeAtPosition({7, 28}))); // typeof(vec) == "Instance"
|
2022-01-28 07:46:05 +08:00
|
|
|
|
2022-03-05 00:36:33 +08:00
|
|
|
CHECK_EQ("{+ X: a, Y: b, Z: c +}", toString(requireTypeAtPosition({9, 28}))); // type(vec) ~= "vector" and typeof(vec) ~= "Instance"
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "typeguard_cast_instance_or_vector3_to_vector")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Instance | Vector3)
|
|
|
|
if typeof(x) == "Vector3" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("Vector3", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Instance", toString(requireTypeAtPosition({5, 28})));
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "type_narrow_for_all_the_userdata")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string | number | Instance | Vector3)
|
|
|
|
if type(x) == "userdata" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("Instance | Vector3", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number | string", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
|
2023-01-21 04:27:03 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "type_narrow_but_the_discriminant_type_isnt_a_class")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string | number | Instance | Vector3)
|
|
|
|
if type(x) == "any" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-01-21 04:27:03 +08:00
|
|
|
{
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("never", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Instance | Vector3 | number | string", toString(requireTypeAtPosition({5, 28})));
|
2023-01-21 04:27:03 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ("*error-type*", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("*error-type*", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-28 07:46:05 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "eliminate_subclasses_of_instance")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Part | Folder | string)
|
|
|
|
if typeof(x) == "Instance" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("Folder | Part", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({5, 28})));
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "narrow_from_subclasses_of_instance_or_string_or_vector3")
|
2022-01-28 07:46:05 +08:00
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
2022-11-11 06:53:13 +08:00
|
|
|
local function f(x: Part | Folder | string | Vector3)
|
2022-01-28 07:46:05 +08:00
|
|
|
if typeof(x) == "Instance" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("Folder | Part", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Vector3 | string", toString(requireTypeAtPosition({5, 28})));
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "x_as_any_if_x_is_instance_elseif_x_is_table")
|
|
|
|
{
|
2024-08-24 00:35:30 +08:00
|
|
|
// CLI-117136 - this code doesn't finish constraint solving and has blocked types in the output
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-24 00:35:30 +08:00
|
|
|
return;
|
2022-01-28 07:46:05 +08:00
|
|
|
CheckResult result = check(R"(
|
|
|
|
--!nonstrict
|
|
|
|
|
|
|
|
local function f(x)
|
|
|
|
if typeof(x) == "Instance" and x:IsA("Folder") then
|
|
|
|
local foo = x
|
|
|
|
elseif typeof(x) == "table" then
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2022-12-03 02:09:59 +08:00
|
|
|
{
|
|
|
|
CHECK_EQ("Folder & Instance & {- -}", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK_EQ("(~Folder | ~Instance) & {- -} & never", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ("Folder", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK_EQ("any", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "refine_param_of_type_instance_without_using_typeof")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Instance)
|
|
|
|
if x:IsA("Folder") then
|
|
|
|
local foo = x
|
|
|
|
elseif typeof(x) == "table" then
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("Folder", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("never", toString(requireTypeAtPosition({5, 28})));
|
2022-12-03 02:09:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "refine_param_of_type_folder_or_part_without_using_typeof")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Part | Folder)
|
|
|
|
if x:IsA("Folder") then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("Folder", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Part", toString(requireTypeAtPosition({5, 28})));
|
2022-12-03 02:09:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "isa_type_refinement_must_be_known_ahead_of_time")
|
|
|
|
{
|
2024-08-10 01:18:20 +08:00
|
|
|
// CLI-115087 - The new solver does not consistently combine tables with
|
|
|
|
// class types when they appear in the upper bounds of a free type.
|
2024-08-31 04:16:51 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauSolverV2, false};
|
2024-08-10 01:18:20 +08:00
|
|
|
|
2022-12-03 02:09:59 +08:00
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x): Instance
|
|
|
|
if x:IsA("Folder") then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
|
|
|
|
return x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("Instance", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Instance", toString(requireTypeAtPosition({5, 28})));
|
2022-01-28 07:46:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "x_is_not_instance_or_else_not_part")
|
|
|
|
{
|
2024-08-24 00:35:30 +08:00
|
|
|
// CLI-117135 - RefinementTests.x_is_not_instance_or_else_not_part not correctly applying refinements to a function parameter
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-24 00:35:30 +08:00
|
|
|
return;
|
2022-01-28 07:46:05 +08:00
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Part | Folder | string)
|
|
|
|
if typeof(x) ~= "Instance" or not x:IsA("Part") then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("Folder | string", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Part", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
|
2022-11-11 06:53:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "typeguard_doesnt_leak_to_elseif")
|
2022-03-18 08:46:04 +08:00
|
|
|
{
|
2022-06-11 00:58:21 +08:00
|
|
|
CheckResult result = check(R"(
|
2022-03-18 08:46:04 +08:00
|
|
|
function f(a)
|
|
|
|
if type(a) == "boolean" then
|
|
|
|
local a1 = a
|
|
|
|
elseif a.fn() then
|
|
|
|
local a2 = a
|
|
|
|
else
|
|
|
|
local a3 = a
|
|
|
|
end
|
|
|
|
end
|
2022-06-11 00:58:21 +08:00
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2022-07-08 09:22:39 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknowns")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: unknown)
|
|
|
|
if type(x) == "string" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local bar = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2022-11-11 06:53:13 +08:00
|
|
|
{
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({3, 28})));
|
2024-03-02 02:45:26 +08:00
|
|
|
CHECK_EQ("~string", toString(requireTypeAtPosition({5, 28})));
|
2022-11-11 06:53:13 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("unknown", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
2022-07-08 09:22:39 +08:00
|
|
|
}
|
|
|
|
|
2023-02-25 05:49:38 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_boolean")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: number | boolean)
|
|
|
|
if typeof(x) == "boolean" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("boolean", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_thread")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: number | thread)
|
|
|
|
if typeof(x) == "thread" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("thread", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
|
2023-11-11 05:10:07 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_buffer")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: number | buffer)
|
|
|
|
if typeof(x) == "buffer" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("buffer", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
|
2022-06-11 00:58:21 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "falsiness_of_TruthyPredicate_narrows_into_nil")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(t: {number})
|
|
|
|
local x = t[1]
|
|
|
|
if not x then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local bar = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2022-03-18 08:46:04 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-06-11 00:58:21 +08:00
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({4, 28})));
|
|
|
|
CHECK_EQ("number", toString(requireTypeAtPosition({6, 28})));
|
2022-03-18 08:46:04 +08:00
|
|
|
}
|
|
|
|
|
2022-07-08 09:22:39 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "what_nonsensical_condition")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x)
|
|
|
|
if type(x) == "string" and type(x) == "number" then
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
CHECK_EQ("never", toString(requireTypeAtPosition({3, 28})));
|
2022-11-11 06:53:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "else_with_no_explicit_expression_should_also_refine_the_tagged_union")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Ok<T> = { tag: "ok", value: T }
|
|
|
|
type Err<E> = { tag: "err", err: E }
|
|
|
|
type Result<T, E> = Ok<T> | Err<E>
|
|
|
|
|
|
|
|
function and_then<T, U, E>(r: Result<T, E>, f: (T) -> U): Result<U, E>
|
|
|
|
if r.tag == "ok" then
|
|
|
|
return { tag = "ok", value = f(r.value) }
|
|
|
|
else
|
|
|
|
return r
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2022-07-08 09:22:39 +08:00
|
|
|
}
|
|
|
|
|
2022-12-03 02:09:59 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "fuzz_filtered_refined_types_are_followed")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local _
|
|
|
|
do
|
|
|
|
local _ = _ ~= _ or _ or _
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2023-05-20 03:37:30 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
Sync to upstream/release/562 (#828)
* Fixed rare use-after-free in analysis during table unification
A lot of work these past months went into two new Luau components:
* A near full rewrite of the typechecker using a new deferred constraint
resolution system
* Native code generation for AoT/JiT compilation of VM bytecode into x64
(avx)/arm64 instructions
Both of these components are far from finished and we don't provide
documentation on building and using them at this point.
However, curious community members expressed interest in learning about
changes that go into these components each week, so we are now listing
them here in the 'sync' pull request descriptions.
---
New typechecker can be enabled by setting
DebugLuauDeferredConstraintResolution flag to 'true'.
It is considered unstable right now, so try it at your own risk.
Even though it already provides better type inference than the current
one in some cases, our main goal right now is to reach feature parity
with current typechecker.
Features which improve over the capabilities of the current typechecker
are marked as '(NEW)'.
Changes to new typechecker:
* Regular for loop index and parameters are now typechecked
* Invalid type annotations on local variables are ignored to improve
autocomplete
* Fixed missing autocomplete type suggestions for function arguments
* Type reduction is now performed to produce simpler types to be
presented to the user (error messages, custom LSPs)
* Internally, complex types like '((number | string) & ~(false?)) |
string' can be produced, which is just 'string | number' when simplified
* Fixed spots where support for unknown and never types was missing
* (NEW) Length operator '#' is now valid to use on top table type, this
type comes up when doing typeof(x) == "table" guards and isn't available
in current typechecker
---
Changes to native code generation:
* Additional math library fast calls are now lowered to x64: math.ldexp,
math.round, math.frexp, math.modf, math.sign and math.clamp
2023-02-04 03:26:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknown_to_table_then_take_the_length")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: unknown)
|
|
|
|
if typeof(x) == "table" then
|
|
|
|
local len = #x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-02-18 07:41:51 +08:00
|
|
|
{
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
2023-03-04 04:21:14 +08:00
|
|
|
CHECK_EQ("table", toString(requireTypeAtPosition({3, 29})));
|
2023-02-18 07:41:51 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
CHECK_EQ("unknown", toString(requireTypeAtPosition({3, 29})));
|
|
|
|
}
|
2022-12-03 02:09:59 +08:00
|
|
|
}
|
|
|
|
|
2023-03-04 04:21:14 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknown_to_table_then_clone_it")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: unknown)
|
|
|
|
if typeof(x) == "table" then
|
|
|
|
local cloned: {} = table.clone(x)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-03-04 04:21:14 +08:00
|
|
|
{
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-11 03:40:38 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "refine_a_param_that_got_resolved_during_constraint_solving_stage")
|
|
|
|
{
|
2024-08-24 00:35:30 +08:00
|
|
|
// CLI-117134 - Applying a refinement causes an optional value access error.
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-24 00:35:30 +08:00
|
|
|
return;
|
2023-02-11 03:40:38 +08:00
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Id<T> = T
|
|
|
|
|
|
|
|
local function f(x: Id<Id<Part | Folder> | Id<string>>)
|
|
|
|
if typeof(x) ~= "string" and x:IsA("Part") then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("Part", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK_EQ("Folder | string", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "refine_a_param_that_got_resolved_during_constraint_solving_stage_2")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function hof(f: (Instance) -> ()) end
|
|
|
|
|
|
|
|
hof(function(inst)
|
|
|
|
if inst:IsA("Part") then
|
|
|
|
local foo = inst
|
|
|
|
else
|
|
|
|
local foo = inst
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("Part", toString(requireTypeAtPosition({5, 28})));
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-02-11 03:40:38 +08:00
|
|
|
CHECK_EQ("Instance & ~Part", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
else
|
|
|
|
CHECK_EQ("Instance", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
|
|
|
|
2023-03-04 04:21:14 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "refine_a_property_of_some_global")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
foo = { bar = 5 :: number? }
|
|
|
|
|
|
|
|
if foo.bar then
|
|
|
|
local bar = foo.bar
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-07-08 04:10:48 +08:00
|
|
|
{
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(3, result);
|
2023-03-18 03:20:37 +08:00
|
|
|
|
2024-08-10 01:18:20 +08:00
|
|
|
CHECK_EQ("*error-type* | buffer | class | function | number | string | table | thread | true", toString(requireTypeAtPosition({4, 30})));
|
2023-07-08 04:10:48 +08:00
|
|
|
}
|
2023-03-04 04:21:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "dataflow_analysis_can_tell_refinements_when_its_appropriate_to_refine_into_nil_or_never")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(t: {string}, s: string)
|
|
|
|
local v1 = t[5]
|
|
|
|
local v2 = v1
|
|
|
|
|
|
|
|
if typeof(v1) == "nil" then
|
|
|
|
local foo = v1
|
|
|
|
else
|
|
|
|
local foo = v1
|
|
|
|
end
|
|
|
|
|
|
|
|
if typeof(v2) == "nil" then
|
|
|
|
local foo = v2
|
|
|
|
else
|
|
|
|
local foo = v2
|
|
|
|
end
|
|
|
|
|
|
|
|
if typeof(s) == "nil" then
|
2024-08-10 01:18:20 +08:00
|
|
|
local foo = s -- line 18
|
2023-03-04 04:21:14 +08:00
|
|
|
else
|
2024-08-10 01:18:20 +08:00
|
|
|
local foo = s -- line 20
|
2023-03-04 04:21:14 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({6, 28})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({8, 28})));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({12, 28})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({14, 28})));
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-03-04 04:21:14 +08:00
|
|
|
{
|
2024-08-10 01:18:20 +08:00
|
|
|
// CLI-115281 - Types produced by refinements don't always get simplified
|
|
|
|
CHECK_EQ("nil & string", toString(requireTypeAtPosition({18, 28})));
|
2023-03-04 04:21:14 +08:00
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({20, 28})));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({18, 28})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({20, 28})));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "cat_or_dog_through_a_local")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Cat = { tag: "cat", catfood: string }
|
|
|
|
type Dog = { tag: "dog", dogfood: string }
|
|
|
|
type Animal = Cat | Dog
|
|
|
|
|
|
|
|
local function f(animal: Animal)
|
|
|
|
local tag = animal.tag
|
|
|
|
if tag == "dog" then
|
|
|
|
local dog = animal
|
|
|
|
elseif tag == "cat" then
|
|
|
|
local cat = animal
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("Cat | Dog", toString(requireTypeAtPosition({8, 28})));
|
|
|
|
CHECK_EQ("Cat | Dog", toString(requireTypeAtPosition({10, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "prove_that_dataflow_analysis_isnt_doing_alias_tracking_yet")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(tag: "cat" | "dog")
|
|
|
|
local tag2 = tag
|
|
|
|
|
|
|
|
if tag2 == "cat" then
|
|
|
|
local foo = tag
|
|
|
|
else
|
|
|
|
local foo = tag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ(R"("cat" | "dog")", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
CHECK_EQ(R"("cat" | "dog")", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "fail_to_refine_a_property_of_subscript_expression")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Foo = { foo: number? }
|
|
|
|
local function f(t: {Foo})
|
|
|
|
if t[1].foo then
|
|
|
|
local foo = t[1].foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("number?", toString(requireTypeAtPosition({4, 34})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_annotations_arent_relevant_when_doing_dataflow_analysis")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function s() return "hello" end
|
|
|
|
|
|
|
|
local function f(t: {string})
|
|
|
|
local s1: string = t[5]
|
|
|
|
local s2: string = s()
|
|
|
|
|
|
|
|
if typeof(s1) == "nil" and typeof(s2) == "nil" then
|
|
|
|
local foo = s1
|
|
|
|
local bar = s2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({8, 28})));
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
// CLI-115478 - This should be never
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({9, 28})));
|
|
|
|
}
|
2023-03-04 04:21:14 +08:00
|
|
|
else
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({9, 28})));
|
|
|
|
}
|
|
|
|
|
2023-04-29 03:55:13 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "function_call_with_colon_after_refining_not_to_be_nil")
|
|
|
|
{
|
2024-08-31 04:16:51 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauSolverV2, true};
|
2023-04-29 03:55:13 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
--!strict
|
|
|
|
export type Observer<T> = {
|
2024-08-02 22:30:04 +08:00
|
|
|
read complete: ((self: Observer<T>) -> ())?,
|
2023-04-29 03:55:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
local function _f(handler: Observer<any>)
|
|
|
|
assert(handler.complete ~= nil)
|
|
|
|
handler:complete() -- incorrectly gives Value of type '((Observer<any>) -> ())?' could be nil
|
|
|
|
handler.complete(handler) -- works fine, both forms should avoid the error
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "refinements_should_not_affect_assignment")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local a: unknown = true
|
|
|
|
if a == true then
|
|
|
|
a = 'not even remotely similar to a boolean'
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2023-07-08 04:10:48 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refinements_should_preserve_error_suppression")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local a: any = {}
|
|
|
|
local b
|
|
|
|
if typeof(a) == "table" then
|
|
|
|
b = a.field
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2023-07-08 04:10:48 +08:00
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
else
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2023-07-28 23:13:53 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "many_refinements_on_val")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function is_nan(val: any): boolean
|
|
|
|
return type(val) == "number" and val ~= val
|
|
|
|
end
|
|
|
|
|
|
|
|
local function is_js_boolean(val: any): boolean
|
|
|
|
return not not val and val ~= 0 and val ~= "" and not is_nan(val)
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("(any) -> boolean", toString(requireType("is_nan")));
|
|
|
|
CHECK_EQ("(any) -> boolean", toString(requireType("is_js_boolean")));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "refine_unknown_to_table")
|
|
|
|
{
|
2024-08-31 04:16:51 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauSolverV2, true};
|
2023-07-28 23:13:53 +08:00
|
|
|
// this test is DCR-only as an instance of DCR fixing a bug in the old solver
|
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
2023-10-14 04:20:12 +08:00
|
|
|
local function f(a: unknown)
|
|
|
|
if typeof(a) == "table" then
|
|
|
|
for i, v in a do
|
2023-12-09 05:50:16 +08:00
|
|
|
return i, v
|
2023-10-14 04:20:12 +08:00
|
|
|
end
|
2023-07-28 23:13:53 +08:00
|
|
|
end
|
2024-01-27 11:20:56 +08:00
|
|
|
|
|
|
|
error("")
|
2023-07-28 23:13:53 +08:00
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
2023-12-09 05:50:16 +08:00
|
|
|
CHECK_EQ("(unknown) -> (unknown, unknown)", toString(requireType("f")));
|
2023-07-28 23:13:53 +08:00
|
|
|
}
|
|
|
|
|
2023-08-05 03:18:54 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "conditional_refinement_should_stay_error_suppressing")
|
|
|
|
{
|
2024-08-31 04:16:51 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauSolverV2, true};
|
2023-08-05 03:18:54 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function test(element: any?)
|
|
|
|
if element then
|
|
|
|
local owner = element._owner
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2023-10-07 03:02:32 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "globals_can_be_narrowed_too")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
if typeof(string) == 'string' then
|
|
|
|
local foo = string
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
2024-08-31 04:16:51 +08:00
|
|
|
if (FFlag::LuauSolverV2)
|
2024-08-10 01:18:20 +08:00
|
|
|
{
|
|
|
|
// CLI-114134
|
|
|
|
CHECK("string & typeof(string)" == toString(requireTypeAtPosition(Position{2, 24})));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
CHECK("never" == toString(requireTypeAtPosition(Position{2, 24})));
|
2023-10-07 03:02:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "luau_polyfill_isindexkey_refine_conjunction")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function isIndexKey(k, contiguousLength)
|
|
|
|
return type(k) == "number"
|
|
|
|
and k <= contiguousLength -- nothing out of bounds
|
|
|
|
and 1 <= k -- nothing illegal for array indices
|
|
|
|
and math.floor(k) == k -- no float keys
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "luau_polyfill_isindexkey_refine_conjunction_variant")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function isIndexKey(k, contiguousLength: number)
|
|
|
|
return type(k) == "number"
|
|
|
|
and k <= contiguousLength -- nothing out of bounds
|
|
|
|
and 1 <= k -- nothing illegal for array indices
|
|
|
|
and math.floor(k) == k -- no float keys
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2023-10-21 09:10:30 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "ex")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string | number)
|
|
|
|
if typeof((x)) == "string" then
|
|
|
|
local y = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
TypeId t = requireTypeAtPosition({3, 18});
|
|
|
|
CHECK("string" == toString(t));
|
|
|
|
}
|
|
|
|
|
2024-03-09 08:47:53 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "mutate_prop_of_some_refined_symbol")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function instances(): {Instance} error("") end
|
|
|
|
local function vec3(x, y, z): Vector3 error("") end
|
|
|
|
|
|
|
|
for _, object in ipairs(instances()) do
|
|
|
|
if object:IsA("Part") then
|
|
|
|
object.Position = vec3(1, 2, 3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "mutate_prop_of_some_refined_symbol_2")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Result<T, E> = never
|
|
|
|
| { tag: "ok", value: T }
|
|
|
|
| { tag: "err", error: E }
|
|
|
|
|
|
|
|
local function results(): {Result<number, string>} error("") end
|
|
|
|
|
|
|
|
for _, res in ipairs(results()) do
|
|
|
|
if res.tag == "ok" then
|
|
|
|
res.value = 7
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
}
|
|
|
|
|
2024-03-31 07:14:44 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "ensure_t_after_return_references_all_reachable_points")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local t = {}
|
|
|
|
|
|
|
|
local function f(k: string)
|
|
|
|
if t[k] ~= nil then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
t[k] = 5
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("{ [string]: number }", toString(requireTypeAtPosition({8, 12}), {true}));
|
|
|
|
}
|
2024-03-16 07:37:39 +08:00
|
|
|
|
2024-08-02 22:30:04 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "long_disjunction_of_refinements_should_not_trip_recursion_counter")
|
|
|
|
{
|
|
|
|
CHECK_NOTHROW(check(R"(
|
|
|
|
function(obj)
|
|
|
|
if script.Parent.SeatNumber.Value == "1D" or
|
|
|
|
script.Parent.SeatNumber.Value == "2D" or
|
|
|
|
script.Parent.SeatNumber.Value == "3D" or
|
|
|
|
script.Parent.SeatNumber.Value == "4D" or
|
|
|
|
script.Parent.SeatNumber.Value == "5D" or
|
|
|
|
script.Parent.SeatNumber.Value == "6D" or
|
|
|
|
script.Parent.SeatNumber.Value == "7D" or
|
|
|
|
script.Parent.SeatNumber.Value == "8D" or
|
|
|
|
script.Parent.SeatNumber.Value == "9D" or
|
|
|
|
script.Parent.SeatNumber.Value == "10D" or
|
|
|
|
script.Parent.SeatNumber.Value == "11D" or
|
|
|
|
script.Parent.SeatNumber.Value == "12D" or
|
|
|
|
script.Parent.SeatNumber.Value == "13D" or
|
|
|
|
script.Parent.SeatNumber.Value == "14D" or
|
|
|
|
script.Parent.SeatNumber.Value == "15D" or
|
|
|
|
script.Parent.SeatNumber.Value == "16D" or
|
|
|
|
script.Parent.SeatNumber.Value == "1C" or
|
|
|
|
script.Parent.SeatNumber.Value == "2C" or
|
|
|
|
script.Parent.SeatNumber.Value == "3C" or
|
|
|
|
script.Parent.SeatNumber.Value == "4C" or
|
|
|
|
script.Parent.SeatNumber.Value == "5C" or
|
|
|
|
script.Parent.SeatNumber.Value == "6C" or
|
|
|
|
script.Parent.SeatNumber.Value == "7C" or
|
|
|
|
script.Parent.SeatNumber.Value == "8C" or
|
|
|
|
script.Parent.SeatNumber.Value == "9C" or
|
|
|
|
script.Parent.SeatNumber.Value == "10C" or
|
|
|
|
script.Parent.SeatNumber.Value == "11C" or
|
|
|
|
script.Parent.SeatNumber.Value == "12C" or
|
|
|
|
script.Parent.SeatNumber.Value == "13C" or
|
|
|
|
script.Parent.SeatNumber.Value == "14C" or
|
|
|
|
script.Parent.SeatNumber.Value == "15C" or
|
|
|
|
script.Parent.SeatNumber.Value == "16C" then
|
|
|
|
end
|
|
|
|
)"));
|
|
|
|
}
|
2024-08-17 02:29:33 +08:00
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "more_complex_long_disjunction_of_refinements_shouldnt_trip_ice")
|
|
|
|
{
|
|
|
|
CHECK_NOTHROW(check(R"(
|
|
|
|
script:connect(function(obj)
|
|
|
|
if script.Parent.SeatNumber.Value == "1D" or
|
|
|
|
script.Parent.SeatNumber.Value == "2D" or
|
|
|
|
script.Parent.SeatNumber.Value == "3D" or
|
|
|
|
script.Parent.SeatNumber.Value == "4D" or
|
|
|
|
script.Parent.SeatNumber.Value == "5D" or
|
|
|
|
script.Parent.SeatNumber.Value == "6D" or
|
|
|
|
script.Parent.SeatNumber.Value == "7D" or
|
|
|
|
script.Parent.SeatNumber.Value == "8D" or
|
|
|
|
script.Parent.SeatNumber.Value == "9D" or
|
|
|
|
script.Parent.SeatNumber.Value == "10D" or
|
|
|
|
script.Parent.SeatNumber.Value == "11D" or
|
|
|
|
script.Parent.SeatNumber.Value == "12D" or
|
|
|
|
script.Parent.SeatNumber.Value == "13D" or
|
|
|
|
script.Parent.SeatNumber.Value == "14D" or
|
|
|
|
script.Parent.SeatNumber.Value == "15D" or
|
|
|
|
script.Parent.SeatNumber.Value == "16D" or
|
|
|
|
script.Parent.SeatNumber.Value == "1C" or
|
|
|
|
script.Parent.SeatNumber.Value == "2C" or
|
|
|
|
script.Parent.SeatNumber.Value == "3C" or
|
|
|
|
script.Parent.SeatNumber.Value == "4C" or
|
|
|
|
script.Parent.SeatNumber.Value == "5C" or
|
|
|
|
script.Parent.SeatNumber.Value == "6C" or
|
|
|
|
script.Parent.SeatNumber.Value == "7C" or
|
|
|
|
script.Parent.SeatNumber.Value == "8C" or
|
|
|
|
script.Parent.SeatNumber.Value == "9C" or
|
|
|
|
script.Parent.SeatNumber.Value == "10C" or
|
|
|
|
script.Parent.SeatNumber.Value == "11C" or
|
|
|
|
script.Parent.SeatNumber.Value == "12C" or
|
|
|
|
script.Parent.SeatNumber.Value == "13C" or
|
|
|
|
script.Parent.SeatNumber.Value == "14C" or
|
|
|
|
script.Parent.SeatNumber.Value == "15C" or
|
|
|
|
script.Parent.SeatNumber.Value == "16C" then
|
|
|
|
end)
|
|
|
|
)"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "refinements_should_avoid_building_up_big_intersect_families")
|
|
|
|
{
|
|
|
|
CHECK_NOTHROW(check(R"(
|
|
|
|
script:connect(function(obj)
|
|
|
|
if script.Parent.SeatNumber.Value == "1D" or script.Parent.SeatNumber.Value == "2D" or script.Parent.SeatNumber.Value == "3D" or script.Parent.SeatNumber.Value == "4D" or script.Parent.SeatNumber.Value == "5D" or script.Parent.SeatNumber.Value == "6D" or script.Parent.SeatNumber.Value == "7D" or script.Parent.SeatNumber.Value == "8D" or script.Parent.SeatNumber.Value == "9D" or script.Parent.SeatNumber.Value == "10D" or script.Parent.SeatNumber.Value == "11D" or script.Parent.SeatNumber.Value == "12D" or script.Parent.SeatNumber.Value == "13D" or script.Parent.SeatNumber.Value == "14D" or script.Parent.SeatNumber.Value == "15D" or script.Parent.SeatNumber.Value == "16D" or script.Parent.SeatNumber.Value == "1C" or script.Parent.SeatNumber.Value == "2C" or script.Parent.SeatNumber.Value == "3C" or script.Parent.SeatNumber.Value == "4C" or script.Parent.SeatNumber.Value == "5C" or script.Parent.SeatNumber.Value == "6C" or script.Parent.SeatNumber.Value == "7C" or script.Parent.SeatNumber.Value == "8C" or script.Parent.SeatNumber.Value == "9C" or script.Parent.SeatNumber.Value == "10C" or script.Parent.SeatNumber.Value == "11C" or script.Parent.SeatNumber.Value == "12C" or script.Parent.SeatNumber.Value == "13C" or script.Parent.SeatNumber.Value == "14C" or script.Parent.SeatNumber.Value == "15C" or script.Parent.SeatNumber.Value == "16C" then
|
|
|
|
if p.Name == script.Parent.Parent.Parent.Parent.Parent.Parent.MainParts.CD.SurfaceGui[script.Parent.SeatNumber.Value].Player.Value or script.Parent.Parent.Parent.Parent.Parent.Parent.MainParts.CD.SurfaceGui[script.Parent.SeatNumber.Value].Player.Value == "" then
|
|
|
|
else
|
|
|
|
if script.Parent:FindFirstChild("SeatWeld") then
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if p.Name == script.Parent.Parent.Parent.Parent.Parent.Parent.MainParts.AB.SurfaceGui[script.Parent.SeatNumber.Value].Player.Value or script.Parent.Parent.Parent.Parent.Parent.Parent.MainParts.AB.SurfaceGui[script.Parent.SeatNumber.Value].Player.Value == "" then
|
|
|
|
print("Allowed")
|
|
|
|
else
|
|
|
|
if script.Parent:FindFirstChild("SeatWeld") then
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
)"));
|
|
|
|
}
|
|
|
|
|
2024-09-21 00:53:26 +08:00
|
|
|
TEST_CASE_FIXTURE(Fixture, "refinements_table_intersection_limits" * doctest::timeout(0.5))
|
|
|
|
{
|
|
|
|
ScopedFastFlag LuauUseNormalizeIntersectionLimit{FFlag::LuauUseNormalizeIntersectionLimit, true};
|
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
--!strict
|
|
|
|
type Dir = {
|
|
|
|
a: number?, b: number?, c: number?, d: number?, e: number?, f: number?,
|
|
|
|
g: number?, h: number?, i: number?, j: number?, k: number?, l: number?,
|
|
|
|
m: number?, n: number?, o: number?, p: number?, q: number?, r: number?,
|
|
|
|
}
|
|
|
|
|
|
|
|
local function test(dirs: {Dir})
|
|
|
|
for k, dir in dirs
|
|
|
|
local success, message = pcall(function()
|
|
|
|
assert(dir.a == nil or type(dir.a) == "number")
|
|
|
|
assert(dir.b == nil or type(dir.b) == "number")
|
|
|
|
assert(dir.c == nil or type(dir.c) == "number")
|
|
|
|
assert(dir.d == nil or type(dir.d) == "number")
|
|
|
|
assert(dir.e == nil or type(dir.e) == "number")
|
|
|
|
assert(dir.f == nil or type(dir.f) == "number")
|
|
|
|
assert(dir.g == nil or type(dir.g) == "number")
|
|
|
|
assert(dir.h == nil or type(dir.h) == "number")
|
|
|
|
assert(dir.i == nil or type(dir.i) == "number")
|
|
|
|
assert(dir.j == nil or type(dir.j) == "number")
|
|
|
|
assert(dir.k == nil or type(dir.k) == "number")
|
|
|
|
assert(dir.l == nil or type(dir.l) == "number")
|
|
|
|
assert(dir.m == nil or type(dir.m) == "number")
|
|
|
|
assert(dir.n == nil or type(dir.n) == "number")
|
|
|
|
assert(dir.o == nil or type(dir.o) == "number")
|
|
|
|
assert(dir.p == nil or type(dir.p) == "number")
|
|
|
|
assert(dir.q == nil or type(dir.q) == "number")
|
|
|
|
assert(dir.r == nil or type(dir.r) == "number")
|
|
|
|
assert(dir.t == nil or type(dir.t) == "number")
|
|
|
|
assert(dir.u == nil or type(dir.u) == "number")
|
|
|
|
assert(dir.v == nil or type(dir.v) == "number")
|
|
|
|
local checkpoint = dir
|
|
|
|
|
|
|
|
checkpoint.w = 1
|
|
|
|
end)
|
|
|
|
assert(success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2024-10-05 02:29:55 +08:00
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "typeof_instance_refinement")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Instance | Vector3)
|
|
|
|
if typeof(x) == "Instance" then
|
|
|
|
local foo = x
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("Instance", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Vector3", toString(requireTypeAtPosition({5, 28})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "typeof_instance_error")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Part)
|
|
|
|
if typeof(x) == "Instance" then
|
|
|
|
local foo : Folder = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(RefinementClassFixture, "typeof_instance_isa_refinement")
|
|
|
|
{
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: Part | Folder | string)
|
|
|
|
if typeof(x) == "Instance" then
|
|
|
|
local foo = x
|
|
|
|
if foo:IsA("Folder") then
|
|
|
|
local bar = foo
|
|
|
|
end
|
|
|
|
else
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("Folder | Part", toString(requireTypeAtPosition({3, 28})));
|
|
|
|
CHECK_EQ("Folder", toString(requireTypeAtPosition({5, 32})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({8, 28})));
|
|
|
|
}
|
|
|
|
|
2021-10-30 04:25:12 +08:00
|
|
|
TEST_SUITE_END();
|