mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 19:30:54 +01:00
Fix a few style changes that went out-of-sync
This commit is contained in:
parent
7a43ae3b37
commit
b0b7dfb714
1 changed files with 13 additions and 23 deletions
|
@ -310,8 +310,7 @@ struct TypeStringifier
|
|||
}
|
||||
|
||||
Luau::visit(
|
||||
[this, tv](auto&& t)
|
||||
{
|
||||
[this, tv](auto&& t) {
|
||||
return (*this)(tv, t);
|
||||
},
|
||||
tv->ty);
|
||||
|
@ -907,8 +906,7 @@ struct TypePackStringifier
|
|||
}
|
||||
|
||||
Luau::visit(
|
||||
[this, tp](auto&& t)
|
||||
{
|
||||
[this, tp](auto&& t) {
|
||||
return (*this)(tp, t);
|
||||
},
|
||||
tp->ty);
|
||||
|
@ -1058,9 +1056,7 @@ static void assignCycleNames(const std::set<TypeId>& cycles, const std::set<Type
|
|||
if (auto ttv = get<TableType>(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 (std::find_if(ttv->instantiatedTypeParams.begin(), ttv->instantiatedTypeParams.end(),
|
||||
[&](auto&& el)
|
||||
{
|
||||
if (std::find_if(ttv->instantiatedTypeParams.begin(), ttv->instantiatedTypeParams.end(), [&](auto&& el) {
|
||||
return cycles.count(follow(el));
|
||||
}) != ttv->instantiatedTypeParams.end())
|
||||
cycleNames[cycleTy] = ttv->name ? *ttv->name : *ttv->syntheticName;
|
||||
|
@ -1157,9 +1153,7 @@ ToStringResult toStringDetailed(TypeId ty, ToStringOptions& opts)
|
|||
state.exhaustive = true;
|
||||
|
||||
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(), [](const auto& a, const auto& b) {
|
||||
return a.second < b.second;
|
||||
});
|
||||
|
||||
|
@ -1172,8 +1166,7 @@ ToStringResult toStringDetailed(TypeId ty, ToStringOptions& opts)
|
|||
state.emit(name);
|
||||
state.emit(" = ");
|
||||
Luau::visit(
|
||||
[&tvs, cycleTy = cycleTy](auto&& t)
|
||||
{
|
||||
[&tvs, cycleTy = cycleTy](auto&& t) {
|
||||
return tvs(cycleTy, t);
|
||||
},
|
||||
cycleTy->ty);
|
||||
|
@ -1254,9 +1247,7 @@ ToStringResult toStringDetailed(TypePackId tp, ToStringOptions& opts)
|
|||
state.exhaustive = true;
|
||||
|
||||
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(), [](const auto& a, const auto& b) {
|
||||
return a.second < b.second;
|
||||
});
|
||||
|
||||
|
@ -1269,8 +1260,7 @@ ToStringResult toStringDetailed(TypePackId tp, ToStringOptions& opts)
|
|||
state.emit(name);
|
||||
state.emit(" = ");
|
||||
Luau::visit(
|
||||
[&tvs, cycleTy = cycleTy](auto t)
|
||||
{
|
||||
[&tvs, cycleTy = cycleTy](auto t) {
|
||||
return tvs(cycleTy, t);
|
||||
},
|
||||
cycleTy->ty);
|
||||
|
|
Loading…
Add table
Reference in a new issue