mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
Improve table stringifier when line breaks enabled (#488)
* Improve table stringifier when line breaks enabled * Add FFlag * Fix FFlags
This commit is contained in:
parent
b066e4c8f8
commit
c30ab0647b
2 changed files with 113 additions and 21 deletions
|
@ -18,6 +18,7 @@ LUAU_FASTFLAG(LuauLowerBoundsCalculation)
|
||||||
* Fair warning: Setting this will break a lot of Luau unit tests.
|
* Fair warning: Setting this will break a lot of Luau unit tests.
|
||||||
*/
|
*/
|
||||||
LUAU_FASTFLAGVARIABLE(DebugLuauVerboseTypeNames, false)
|
LUAU_FASTFLAGVARIABLE(DebugLuauVerboseTypeNames, false)
|
||||||
|
LUAU_FASTFLAGVARIABLE(LuauToStringTableBracesNewlines, false)
|
||||||
|
|
||||||
namespace Luau
|
namespace Luau
|
||||||
{
|
{
|
||||||
|
@ -283,7 +284,8 @@ struct TypeVarStringifier
|
||||||
}
|
}
|
||||||
|
|
||||||
Luau::visit(
|
Luau::visit(
|
||||||
[this, tv](auto&& t) {
|
[this, tv](auto&& t)
|
||||||
|
{
|
||||||
return (*this)(tv, t);
|
return (*this)(tv, t);
|
||||||
},
|
},
|
||||||
tv->ty);
|
tv->ty);
|
||||||
|
@ -557,22 +559,54 @@ struct TypeVarStringifier
|
||||||
{
|
{
|
||||||
case TableState::Sealed:
|
case TableState::Sealed:
|
||||||
state.result.invalid = true;
|
state.result.invalid = true;
|
||||||
openbrace = "{| ";
|
if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
closedbrace = " |}";
|
{
|
||||||
|
openbrace = "{|";
|
||||||
|
closedbrace = "|}";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
openbrace = "{| ";
|
||||||
|
closedbrace = " |}";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case TableState::Unsealed:
|
case TableState::Unsealed:
|
||||||
openbrace = "{ ";
|
if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
closedbrace = " }";
|
{
|
||||||
|
openbrace = "{";
|
||||||
|
closedbrace = "}";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
openbrace = "{ ";
|
||||||
|
closedbrace = " }";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case TableState::Free:
|
case TableState::Free:
|
||||||
state.result.invalid = true;
|
state.result.invalid = true;
|
||||||
openbrace = "{- ";
|
if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
closedbrace = " -}";
|
{
|
||||||
|
openbrace = "{-";
|
||||||
|
closedbrace = "-}";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
openbrace = "{- ";
|
||||||
|
closedbrace = " -}";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case TableState::Generic:
|
case TableState::Generic:
|
||||||
state.result.invalid = true;
|
state.result.invalid = true;
|
||||||
openbrace = "{+ ";
|
if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
closedbrace = " +}";
|
{
|
||||||
|
openbrace = "{+";
|
||||||
|
closedbrace = "+}";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
openbrace = "{+ ";
|
||||||
|
closedbrace = " +}";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -591,6 +625,8 @@ struct TypeVarStringifier
|
||||||
bool comma = false;
|
bool comma = false;
|
||||||
if (ttv.indexer)
|
if (ttv.indexer)
|
||||||
{
|
{
|
||||||
|
if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
|
state.newline();
|
||||||
state.emit("[");
|
state.emit("[");
|
||||||
stringify(ttv.indexer->indexType);
|
stringify(ttv.indexer->indexType);
|
||||||
state.emit("]: ");
|
state.emit("]: ");
|
||||||
|
@ -607,6 +643,10 @@ struct TypeVarStringifier
|
||||||
state.emit(",");
|
state.emit(",");
|
||||||
state.newline();
|
state.newline();
|
||||||
}
|
}
|
||||||
|
else if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
|
{
|
||||||
|
state.newline();
|
||||||
|
}
|
||||||
|
|
||||||
size_t length = state.result.name.length() - oldLength;
|
size_t length = state.result.name.length() - oldLength;
|
||||||
|
|
||||||
|
@ -633,6 +673,13 @@ struct TypeVarStringifier
|
||||||
}
|
}
|
||||||
|
|
||||||
state.dedent();
|
state.dedent();
|
||||||
|
if (FFlag::LuauToStringTableBracesNewlines)
|
||||||
|
{
|
||||||
|
if (comma)
|
||||||
|
state.newline();
|
||||||
|
else
|
||||||
|
state.emit(" ");
|
||||||
|
}
|
||||||
state.emit(closedbrace);
|
state.emit(closedbrace);
|
||||||
|
|
||||||
state.unsee(&ttv);
|
state.unsee(&ttv);
|
||||||
|
@ -833,7 +880,8 @@ struct TypePackStringifier
|
||||||
}
|
}
|
||||||
|
|
||||||
Luau::visit(
|
Luau::visit(
|
||||||
[this, tp](auto&& t) {
|
[this, tp](auto&& t)
|
||||||
|
{
|
||||||
return (*this)(tp, t);
|
return (*this)(tp, t);
|
||||||
},
|
},
|
||||||
tp->ty);
|
tp->ty);
|
||||||
|
@ -964,9 +1012,11 @@ static void assignCycleNames(const std::set<TypeId>& cycles, const std::set<Type
|
||||||
if (auto ttv = get<TableTypeVar>(follow(cycleTy)); !exhaustive && ttv && (ttv->syntheticName || ttv->name))
|
if (auto ttv = get<TableTypeVar>(follow(cycleTy)); !exhaustive && ttv && (ttv->syntheticName || ttv->name))
|
||||||
{
|
{
|
||||||
// If we have a cycle type in type parameters, assign a cycle name for this named table
|
// If we have a cycle type in type parameters, assign a cycle name for this named table
|
||||||
if (std::find_if(ttv->instantiatedTypeParams.begin(), ttv->instantiatedTypeParams.end(), [&](auto&& el) {
|
if (std::find_if(ttv->instantiatedTypeParams.begin(), ttv->instantiatedTypeParams.end(),
|
||||||
return cycles.count(follow(el));
|
[&](auto&& el)
|
||||||
}) != ttv->instantiatedTypeParams.end())
|
{
|
||||||
|
return cycles.count(follow(el));
|
||||||
|
}) != ttv->instantiatedTypeParams.end())
|
||||||
cycleNames[cycleTy] = ttv->name ? *ttv->name : *ttv->syntheticName;
|
cycleNames[cycleTy] = ttv->name ? *ttv->name : *ttv->syntheticName;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
|
@ -1062,9 +1112,11 @@ ToStringResult toStringDetailed(TypeId ty, const ToStringOptions& opts)
|
||||||
state.exhaustive = true;
|
state.exhaustive = true;
|
||||||
|
|
||||||
std::vector<std::pair<TypeId, std::string>> sortedCycleNames{state.cycleNames.begin(), state.cycleNames.end()};
|
std::vector<std::pair<TypeId, std::string>> sortedCycleNames{state.cycleNames.begin(), state.cycleNames.end()};
|
||||||
std::sort(sortedCycleNames.begin(), sortedCycleNames.end(), [](const auto& a, const auto& b) {
|
std::sort(sortedCycleNames.begin(), sortedCycleNames.end(),
|
||||||
return a.second < b.second;
|
[](const auto& a, const auto& b)
|
||||||
});
|
{
|
||||||
|
return a.second < b.second;
|
||||||
|
});
|
||||||
|
|
||||||
bool semi = false;
|
bool semi = false;
|
||||||
for (const auto& [cycleTy, name] : sortedCycleNames)
|
for (const auto& [cycleTy, name] : sortedCycleNames)
|
||||||
|
@ -1075,7 +1127,8 @@ ToStringResult toStringDetailed(TypeId ty, const ToStringOptions& opts)
|
||||||
state.emit(name);
|
state.emit(name);
|
||||||
state.emit(" = ");
|
state.emit(" = ");
|
||||||
Luau::visit(
|
Luau::visit(
|
||||||
[&tvs, cycleTy = cycleTy](auto&& t) {
|
[&tvs, cycleTy = cycleTy](auto&& t)
|
||||||
|
{
|
||||||
return tvs(cycleTy, t);
|
return tvs(cycleTy, t);
|
||||||
},
|
},
|
||||||
cycleTy->ty);
|
cycleTy->ty);
|
||||||
|
@ -1132,9 +1185,11 @@ ToStringResult toStringDetailed(TypePackId tp, const ToStringOptions& opts)
|
||||||
state.exhaustive = true;
|
state.exhaustive = true;
|
||||||
|
|
||||||
std::vector<std::pair<TypeId, std::string>> sortedCycleNames{state.cycleNames.begin(), state.cycleNames.end()};
|
std::vector<std::pair<TypeId, std::string>> sortedCycleNames{state.cycleNames.begin(), state.cycleNames.end()};
|
||||||
std::sort(sortedCycleNames.begin(), sortedCycleNames.end(), [](const auto& a, const auto& b) {
|
std::sort(sortedCycleNames.begin(), sortedCycleNames.end(),
|
||||||
return a.second < b.second;
|
[](const auto& a, const auto& b)
|
||||||
});
|
{
|
||||||
|
return a.second < b.second;
|
||||||
|
});
|
||||||
|
|
||||||
bool semi = false;
|
bool semi = false;
|
||||||
for (const auto& [cycleTy, name] : sortedCycleNames)
|
for (const auto& [cycleTy, name] : sortedCycleNames)
|
||||||
|
@ -1145,7 +1200,8 @@ ToStringResult toStringDetailed(TypePackId tp, const ToStringOptions& opts)
|
||||||
state.emit(name);
|
state.emit(name);
|
||||||
state.emit(" = ");
|
state.emit(" = ");
|
||||||
Luau::visit(
|
Luau::visit(
|
||||||
[&tvs, cycleTy = cycleTy](auto t) {
|
[&tvs, cycleTy = cycleTy](auto t)
|
||||||
|
{
|
||||||
return tvs(cycleTy, t);
|
return tvs(cycleTy, t);
|
||||||
},
|
},
|
||||||
cycleTy->ty);
|
cycleTy->ty);
|
||||||
|
|
|
@ -60,6 +60,42 @@ TEST_CASE_FIXTURE(Fixture, "named_table")
|
||||||
CHECK_EQ("TheTable", toString(&table));
|
CHECK_EQ("TheTable", toString(&table));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_CASE_FIXTURE(Fixture, "empty_table")
|
||||||
|
{
|
||||||
|
ScopedFastFlag LuauToStringTableBracesNewlines("LuauToStringTableBracesNewlines", true);
|
||||||
|
CheckResult result = check(R"(
|
||||||
|
local a: {}
|
||||||
|
)");
|
||||||
|
|
||||||
|
CHECK_EQ("{| |}", toString(requireType("a")));
|
||||||
|
|
||||||
|
// Should stay the same with useLineBreaks enabled
|
||||||
|
ToStringOptions opts;
|
||||||
|
opts.useLineBreaks = true;
|
||||||
|
CHECK_EQ("{| |}", toString(requireType("a"), opts));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_CASE_FIXTURE(Fixture, "table_respects_use_line_break")
|
||||||
|
{
|
||||||
|
ScopedFastFlag LuauToStringTableBracesNewlines("LuauToStringTableBracesNewlines", true);
|
||||||
|
CheckResult result = check(R"(
|
||||||
|
local a: { prop: string, anotherProp: number, thirdProp: boolean }
|
||||||
|
)");
|
||||||
|
|
||||||
|
ToStringOptions opts;
|
||||||
|
opts.useLineBreaks = true;
|
||||||
|
opts.indent = true;
|
||||||
|
|
||||||
|
//clang-format off
|
||||||
|
CHECK_EQ("{|\n"
|
||||||
|
" anotherProp: number,\n"
|
||||||
|
" prop: string,\n"
|
||||||
|
" thirdProp: boolean\n"
|
||||||
|
"|}",
|
||||||
|
toString(requireType("a"), opts));
|
||||||
|
//clang-format on
|
||||||
|
}
|
||||||
|
|
||||||
TEST_CASE_FIXTURE(BuiltinsFixture, "exhaustive_toString_of_cyclic_table")
|
TEST_CASE_FIXTURE(BuiltinsFixture, "exhaustive_toString_of_cyclic_table")
|
||||||
{
|
{
|
||||||
CheckResult result = check(R"(
|
CheckResult result = check(R"(
|
||||||
|
|
Loading…
Add table
Reference in a new issue