2023-03-18 03:20:37 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#include "Fixture.h"
|
|
|
|
#include "doctest.h"
|
|
|
|
|
|
|
|
using namespace Luau;
|
|
|
|
|
2023-12-02 15:46:57 +08:00
|
|
|
LUAU_FASTFLAG(LuauTinyControlFlowAnalysis);
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_SUITE_BEGIN("ControlFlowAnalysis");
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
if not record.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({7, 34})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
if not record.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({7, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_elif_not_y_return")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?, y: string?)
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
elseif not y then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
local bar = y
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({8, 24})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({9, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_elif_not_y_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
elseif not recordY.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({11, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_elif_not_y_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
elseif not recordY.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({11, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_elif_not_y_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
return
|
|
|
|
elseif not recordY.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({11, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_elif_not_y_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
elseif not recordY.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({11, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_elif_rand_return_elif_not_y_return")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?, y: string?)
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
elseif math.random() > 0.5 then
|
|
|
|
return
|
|
|
|
elseif not y then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
local bar = y
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 24})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({11, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_elif_rand_break_elif_not_y_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
elseif math.random() > 0.5 then
|
|
|
|
break
|
|
|
|
elseif not recordY.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_elif_rand_continue_elif_not_y_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
elseif math.random() > 0.5 then
|
|
|
|
continue
|
|
|
|
elseif not recordY.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_elif_not_rand_return_elif_not_y_fallthrough")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?, y: string?)
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
elseif math.random() > 0.5 then
|
|
|
|
return
|
|
|
|
elseif not y then
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
local bar = y
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 24})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({11, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_elif_rand_break_elif_not_y_fallthrough")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
elseif math.random() > 0.5 then
|
|
|
|
break
|
|
|
|
elseif not recordY.value then
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_elif_rand_continue_elif_not_y_fallthrough")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
elseif math.random() > 0.5 then
|
|
|
|
continue
|
|
|
|
elseif not recordY.value then
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_elif_not_y_fallthrough_elif_not_z_return")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?, y: string?, z: string?)
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
elseif not y then
|
|
|
|
|
|
|
|
elseif not z then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
local bar = y
|
|
|
|
local baz = z
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 24})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({11, 24})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({12, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_elif_not_y_fallthrough_elif_not_z_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}}, z: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
local recordZ = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
elseif not recordY.value then
|
|
|
|
|
|
|
|
elseif not recordZ.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
local baz = recordZ.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({14, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({15, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_elif_not_y_fallthrough_elif_not_z_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}}, z: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
local recordZ = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
elseif not recordY.value then
|
|
|
|
|
|
|
|
elseif not recordZ.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
local baz = recordZ.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({14, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({15, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_elif_not_y_throw_elif_not_z_fallthrough")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}}, z: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
local recordZ = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
elseif not recordY.value then
|
|
|
|
error("Y value not defined")
|
|
|
|
elseif not recordZ.value then
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
local baz = recordZ.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({14, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({15, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_elif_not_y_fallthrough_elif_not_z_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}}, z: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
local recordZ = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
return
|
|
|
|
elseif not recordY.value then
|
|
|
|
|
|
|
|
elseif not recordZ.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
local baz = recordZ.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({14, 38})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({15, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "do_if_not_x_return")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
do
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({8, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "for_record_do_if_not_x_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
do
|
|
|
|
if not record.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({9, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "for_record_do_if_not_x_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
do
|
|
|
|
if not record.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({9, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "early_return_in_a_loop_which_isnt_guaranteed_to_run_first")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
while math.random() > 0.5 do
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
|
|
|
|
local bar = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({10, 24})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "early_return_in_a_loop_which_is_guaranteed_to_run_first")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
repeat
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
until math.random() > 0.5
|
|
|
|
|
|
|
|
local bar = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({10, 24}))); // TODO: This is wrong, should be `string`.
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "early_return_in_a_loop_which_is_guaranteed_to_run_first_2")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
for i = 1, 10 do
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
|
|
|
|
local bar = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({7, 28})));
|
|
|
|
CHECK_EQ("string?", toString(requireTypeAtPosition({10, 24}))); // TODO: This is wrong, should be `string`.
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_then_error")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
if not x then
|
|
|
|
error("oops")
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 24})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_then_assert_false")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
if not x then
|
|
|
|
assert(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 24})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_return_if_not_y_return")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?, y: string?)
|
|
|
|
if not x then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if not y then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
local bar = y
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({10, 24})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({11, 24})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_if_not_y_break")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
if not recordY.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_if_not_y_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
if not recordY.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_continue_if_not_y_throw")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
if not recordY.value then
|
|
|
|
error("Y value not defined")
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "if_not_x_break_if_not_y_continue")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}}, y: {{value: string?}})
|
|
|
|
for i, recordX in x do
|
|
|
|
local recordY = y[i]
|
|
|
|
if not recordX.value then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
if not recordY.value then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = recordX.value
|
|
|
|
local bar = recordY.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({12, 38})));
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({13, 38})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_alias_does_not_leak_out")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
if typeof(x) == "string" then
|
|
|
|
return
|
|
|
|
else
|
|
|
|
type Foo = number
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo: Foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Unknown type 'Foo'", toString(result.errors[0]));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({8, 29})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_alias_does_not_leak_out_breaking")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
if typeof(record.value) == "string" then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
type Foo = number
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo: Foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Unknown type 'Foo'", toString(result.errors[0]));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({9, 43})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "type_alias_does_not_leak_out_continuing")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
if typeof(record.value) == "string" then
|
|
|
|
continue
|
|
|
|
else
|
|
|
|
type Foo = number
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo: Foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Unknown type 'Foo'", toString(result.errors[0]));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({9, 43})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "prototyping_and_visiting_alias_has_the_same_scope")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
2023-11-04 07:45:04 +08:00
|
|
|
// In CG, we walk the block to prototype aliases. We then visit the block in-order, which will resolve the prototype to a real type.
|
2023-03-18 03:20:37 +08:00
|
|
|
// That second walk assumes that the name occurs in the same `Scope` that the prototype walk had. If we arbitrarily change scope midway
|
|
|
|
// through, we'd invoke UB.
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
type Foo = number
|
|
|
|
|
|
|
|
if typeof(x) == "string" then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo: Foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Type 'nil' could not be converted into 'number'", toString(result.errors[0]));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({8, 29})));
|
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "prototyping_and_visiting_alias_has_the_same_scope_breaking")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
type Foo = number
|
|
|
|
|
|
|
|
if typeof(record.value) == "string" then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo: Foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Type 'nil' could not be converted into 'number'", toString(result.errors[0]));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({9, 43})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "prototyping_and_visiting_alias_has_the_same_scope_continuing")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: {{value: string?}})
|
|
|
|
for _, record in x do
|
|
|
|
type Foo = number
|
|
|
|
|
|
|
|
if typeof(record.value) == "string" then
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo: Foo = record.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_ERROR_COUNT(1, result);
|
|
|
|
|
|
|
|
CHECK_EQ("Type 'nil' could not be converted into 'number'", toString(result.errors[0]));
|
|
|
|
|
|
|
|
CHECK_EQ("nil", toString(requireTypeAtPosition({9, 43})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "tagged_unions")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Ok<T> = { tag: "ok", value: T }
|
|
|
|
type Err<E> = { tag: "err", error: E }
|
|
|
|
type Result<T, E> = Ok<T> | Err<E>
|
|
|
|
|
|
|
|
local function map<T, U, E>(result: Result<T, E>, f: (T) -> U): Result<U, E>
|
|
|
|
if result.tag == "ok" then
|
|
|
|
local tag = result.tag
|
|
|
|
local val = result.value
|
|
|
|
|
|
|
|
return { tag = "ok", value = f(result.value) }
|
|
|
|
end
|
|
|
|
|
|
|
|
local tag = result.tag
|
|
|
|
local err = result.error
|
|
|
|
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("\"ok\"", toString(requireTypeAtPosition({7, 35})));
|
|
|
|
CHECK_EQ("T", toString(requireTypeAtPosition({8, 35})));
|
|
|
|
|
|
|
|
CHECK_EQ("\"err\"", toString(requireTypeAtPosition({13, 31})));
|
|
|
|
CHECK_EQ("E", toString(requireTypeAtPosition({14, 31})));
|
|
|
|
|
2023-05-20 03:37:30 +08:00
|
|
|
CHECK_EQ("Err<E>", toString(requireTypeAtPosition({16, 19})));
|
2023-03-18 03:20:37 +08:00
|
|
|
}
|
|
|
|
|
2023-09-22 06:28:42 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "tagged_unions_breaking")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Ok<T> = { tag: "ok", value: T }
|
|
|
|
type Err<E> = { tag: "err", error: E }
|
|
|
|
type Result<T, E> = Ok<T> | Err<E>
|
|
|
|
|
|
|
|
local function process<T, E>(results: {Result<T, E>})
|
|
|
|
for _, result in results do
|
|
|
|
if result.tag == "ok" then
|
|
|
|
local tag = result.tag
|
|
|
|
local val = result.value
|
|
|
|
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
local tag = result.tag
|
|
|
|
local err = result.error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("\"ok\"", toString(requireTypeAtPosition({8, 39})));
|
|
|
|
CHECK_EQ("T", toString(requireTypeAtPosition({9, 39})));
|
|
|
|
|
|
|
|
CHECK_EQ("\"err\"", toString(requireTypeAtPosition({14, 35})));
|
|
|
|
CHECK_EQ("E", toString(requireTypeAtPosition({15, 35})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "tagged_unions_continuing")
|
|
|
|
{
|
2024-04-13 01:18:49 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-09-22 06:28:42 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
type Ok<T> = { tag: "ok", value: T }
|
|
|
|
type Err<E> = { tag: "err", error: E }
|
|
|
|
type Result<T, E> = Ok<T> | Err<E>
|
|
|
|
|
|
|
|
local function process<T, E>(results: {Result<T, E>})
|
|
|
|
for _, result in results do
|
|
|
|
if result.tag == "ok" then
|
|
|
|
local tag = result.tag
|
|
|
|
local val = result.value
|
|
|
|
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local tag = result.tag
|
|
|
|
local err = result.error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("\"ok\"", toString(requireTypeAtPosition({8, 39})));
|
|
|
|
CHECK_EQ("T", toString(requireTypeAtPosition({9, 39})));
|
|
|
|
|
|
|
|
CHECK_EQ("\"err\"", toString(requireTypeAtPosition({14, 35})));
|
|
|
|
CHECK_EQ("E", toString(requireTypeAtPosition({15, 35})));
|
|
|
|
}
|
|
|
|
|
2023-03-18 03:20:37 +08:00
|
|
|
TEST_CASE_FIXTURE(BuiltinsFixture, "do_assert_x")
|
|
|
|
{
|
2023-12-02 15:46:57 +08:00
|
|
|
ScopedFastFlag sff{FFlag::LuauTinyControlFlowAnalysis, true};
|
2023-03-18 03:20:37 +08:00
|
|
|
|
|
|
|
CheckResult result = check(R"(
|
|
|
|
local function f(x: string?)
|
|
|
|
do
|
|
|
|
assert(x)
|
|
|
|
end
|
|
|
|
|
|
|
|
local foo = x
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
|
|
|
|
CHECK_EQ("string", toString(requireTypeAtPosition({6, 24})));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_SUITE_END();
|