2021-10-29 21:25:12 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#include "Luau/TxnLog.h"
|
|
|
|
|
2022-02-04 16:45:57 +00:00
|
|
|
#include "Luau/ToString.h"
|
2022-12-09 19:57:01 +00:00
|
|
|
#include "Luau/TypeArena.h"
|
2021-10-29 21:25:12 +01:00
|
|
|
#include "Luau/TypePack.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
2022-01-07 01:46:53 +00:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2021-10-29 21:25:12 +01:00
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
2022-02-04 16:45:57 +00:00
|
|
|
const std::string nullPendingResult = "<nullptr>";
|
|
|
|
|
|
|
|
std::string toString(PendingType* pending)
|
|
|
|
{
|
|
|
|
if (pending == nullptr)
|
|
|
|
return nullPendingResult;
|
|
|
|
|
|
|
|
return toString(pending->pending);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string dump(PendingType* pending)
|
|
|
|
{
|
|
|
|
if (pending == nullptr)
|
|
|
|
{
|
|
|
|
printf("%s\n", nullPendingResult.c_str());
|
|
|
|
return nullPendingResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
ToStringOptions opts;
|
|
|
|
opts.exhaustive = true;
|
|
|
|
opts.functionTypeArguments = true;
|
|
|
|
std::string result = toString(pending->pending, opts);
|
|
|
|
printf("%s\n", result.c_str());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string toString(PendingTypePack* pending)
|
|
|
|
{
|
|
|
|
if (pending == nullptr)
|
|
|
|
return nullPendingResult;
|
|
|
|
|
|
|
|
return toString(pending->pending);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string dump(PendingTypePack* pending)
|
|
|
|
{
|
|
|
|
if (pending == nullptr)
|
|
|
|
{
|
|
|
|
printf("%s\n", nullPendingResult.c_str());
|
|
|
|
return nullPendingResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
ToStringOptions opts;
|
|
|
|
opts.exhaustive = true;
|
|
|
|
opts.functionTypeArguments = true;
|
|
|
|
std::string result = toString(pending->pending, opts);
|
|
|
|
printf("%s\n", result.c_str());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
static const TxnLog emptyLog;
|
|
|
|
|
|
|
|
const TxnLog* TxnLog::empty()
|
|
|
|
{
|
|
|
|
return &emptyLog;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::concat(TxnLog rhs)
|
|
|
|
{
|
|
|
|
for (auto& [ty, rep] : rhs.typeVarChanges)
|
|
|
|
typeVarChanges[ty] = std::move(rep);
|
|
|
|
|
|
|
|
for (auto& [tp, rep] : rhs.typePackChanges)
|
|
|
|
typePackChanges[tp] = std::move(rep);
|
|
|
|
}
|
|
|
|
|
2022-12-02 18:09:59 +00:00
|
|
|
void TxnLog::concatAsIntersections(TxnLog rhs, NotNull<TypeArena> arena)
|
|
|
|
{
|
|
|
|
for (auto& [ty, rightRep] : rhs.typeVarChanges)
|
|
|
|
{
|
|
|
|
if (auto leftRep = typeVarChanges.find(ty))
|
|
|
|
{
|
|
|
|
TypeId leftTy = arena->addType((*leftRep)->pending);
|
|
|
|
TypeId rightTy = arena->addType(rightRep->pending);
|
2023-01-04 20:53:17 +00:00
|
|
|
typeVarChanges[ty]->pending.ty = IntersectionType{{leftTy, rightTy}};
|
2022-12-02 18:09:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
typeVarChanges[ty] = std::move(rightRep);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& [tp, rep] : rhs.typePackChanges)
|
|
|
|
typePackChanges[tp] = std::move(rep);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::concatAsUnion(TxnLog rhs, NotNull<TypeArena> arena)
|
|
|
|
{
|
|
|
|
for (auto& [ty, rightRep] : rhs.typeVarChanges)
|
|
|
|
{
|
|
|
|
if (auto leftRep = typeVarChanges.find(ty))
|
|
|
|
{
|
|
|
|
TypeId leftTy = arena->addType((*leftRep)->pending);
|
|
|
|
TypeId rightTy = arena->addType(rightRep->pending);
|
2023-01-04 20:53:17 +00:00
|
|
|
typeVarChanges[ty]->pending.ty = UnionType{{leftTy, rightTy}};
|
2022-12-02 18:09:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
typeVarChanges[ty] = std::move(rightRep);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& [tp, rep] : rhs.typePackChanges)
|
|
|
|
typePackChanges[tp] = std::move(rep);
|
|
|
|
}
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
void TxnLog::commit()
|
|
|
|
{
|
2022-05-06 01:03:43 +01:00
|
|
|
for (auto& [ty, rep] : typeVarChanges)
|
2022-07-08 02:22:39 +01:00
|
|
|
asMutable(ty)->reassign(rep.get()->pending);
|
2022-01-07 01:46:53 +00:00
|
|
|
|
2022-05-06 01:03:43 +01:00
|
|
|
for (auto& [tp, rep] : typePackChanges)
|
2022-07-08 02:22:39 +01:00
|
|
|
asMutable(tp)->reassign(rep.get()->pending);
|
2022-01-07 01:46:53 +00:00
|
|
|
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::clear()
|
|
|
|
{
|
|
|
|
typeVarChanges.clear();
|
|
|
|
typePackChanges.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
TxnLog TxnLog::inverse()
|
|
|
|
{
|
|
|
|
TxnLog inversed(sharedSeen);
|
|
|
|
|
|
|
|
for (auto& [ty, _rep] : typeVarChanges)
|
|
|
|
inversed.typeVarChanges[ty] = std::make_unique<PendingType>(*ty);
|
|
|
|
|
|
|
|
for (auto& [tp, _rep] : typePackChanges)
|
|
|
|
inversed.typePackChanges[tp] = std::make_unique<PendingTypePack>(*tp);
|
|
|
|
|
|
|
|
return inversed;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TxnLog::haveSeen(TypeId lhs, TypeId rhs) const
|
2022-03-04 16:36:33 +00:00
|
|
|
{
|
|
|
|
return haveSeen((TypeOrPackId)lhs, (TypeOrPackId)rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::pushSeen(TypeId lhs, TypeId rhs)
|
|
|
|
{
|
|
|
|
pushSeen((TypeOrPackId)lhs, (TypeOrPackId)rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::popSeen(TypeId lhs, TypeId rhs)
|
|
|
|
{
|
|
|
|
popSeen((TypeOrPackId)lhs, (TypeOrPackId)rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TxnLog::haveSeen(TypePackId lhs, TypePackId rhs) const
|
|
|
|
{
|
|
|
|
return haveSeen((TypeOrPackId)lhs, (TypeOrPackId)rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::pushSeen(TypePackId lhs, TypePackId rhs)
|
|
|
|
{
|
|
|
|
pushSeen((TypeOrPackId)lhs, (TypeOrPackId)rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxnLog::popSeen(TypePackId lhs, TypePackId rhs)
|
|
|
|
{
|
|
|
|
popSeen((TypeOrPackId)lhs, (TypeOrPackId)rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TxnLog::haveSeen(TypeOrPackId lhs, TypeOrPackId rhs) const
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
2022-05-20 01:02:24 +01:00
|
|
|
const std::pair<TypeOrPackId, TypeOrPackId> sortedPair = (lhs > rhs) ? std::make_pair(lhs, rhs) : std::make_pair(rhs, lhs);
|
|
|
|
if (sharedSeen->end() != std::find(sharedSeen->begin(), sharedSeen->end(), sortedPair))
|
2022-04-15 00:57:43 +01:00
|
|
|
{
|
2022-05-20 01:02:24 +01:00
|
|
|
return true;
|
2022-04-15 00:57:43 +01:00
|
|
|
}
|
2022-05-20 01:02:24 +01:00
|
|
|
|
|
|
|
return false;
|
2022-01-07 01:46:53 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 16:36:33 +00:00
|
|
|
void TxnLog::pushSeen(TypeOrPackId lhs, TypeOrPackId rhs)
|
2021-10-29 21:25:12 +01:00
|
|
|
{
|
2022-03-04 16:36:33 +00:00
|
|
|
const std::pair<TypeOrPackId, TypeOrPackId> sortedPair = (lhs > rhs) ? std::make_pair(lhs, rhs) : std::make_pair(rhs, lhs);
|
2021-12-03 06:41:04 +00:00
|
|
|
sharedSeen->push_back(sortedPair);
|
2021-10-29 21:25:12 +01:00
|
|
|
}
|
|
|
|
|
2022-03-04 16:36:33 +00:00
|
|
|
void TxnLog::popSeen(TypeOrPackId lhs, TypeOrPackId rhs)
|
2021-10-29 21:25:12 +01:00
|
|
|
{
|
2022-03-04 16:36:33 +00:00
|
|
|
const std::pair<TypeOrPackId, TypeOrPackId> sortedPair = (lhs > rhs) ? std::make_pair(lhs, rhs) : std::make_pair(rhs, lhs);
|
2021-12-03 06:41:04 +00:00
|
|
|
LUAU_ASSERT(sortedPair == sharedSeen->back());
|
|
|
|
sharedSeen->pop_back();
|
2021-10-29 21:25:12 +01:00
|
|
|
}
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
PendingType* TxnLog::queue(TypeId ty)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(!ty->persistent);
|
|
|
|
|
|
|
|
// Explicitly don't look in ancestors. If we have discovered something new
|
|
|
|
// about this type, we don't want to mutate the parent's state.
|
|
|
|
auto& pending = typeVarChanges[ty];
|
|
|
|
if (!pending)
|
2022-06-10 17:58:21 +01:00
|
|
|
{
|
2022-01-07 01:46:53 +00:00
|
|
|
pending = std::make_unique<PendingType>(*ty);
|
2022-07-08 02:22:39 +01:00
|
|
|
pending->pending.owningArena = nullptr;
|
2022-06-10 17:58:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
return pending.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingTypePack* TxnLog::queue(TypePackId tp)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(!tp->persistent);
|
|
|
|
|
|
|
|
// Explicitly don't look in ancestors. If we have discovered something new
|
|
|
|
// about this type, we don't want to mutate the parent's state.
|
|
|
|
auto& pending = typePackChanges[tp];
|
|
|
|
if (!pending)
|
2022-06-10 17:58:21 +01:00
|
|
|
{
|
2022-01-07 01:46:53 +00:00
|
|
|
pending = std::make_unique<PendingTypePack>(*tp);
|
2022-07-08 02:22:39 +01:00
|
|
|
pending->pending.owningArena = nullptr;
|
2022-06-10 17:58:21 +01:00
|
|
|
}
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
return pending.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingType* TxnLog::pending(TypeId ty) const
|
|
|
|
{
|
2022-02-11 19:02:09 +00:00
|
|
|
// This function will technically work if `this` is nullptr, but this
|
|
|
|
// indicates a bug, so we explicitly assert.
|
|
|
|
LUAU_ASSERT(static_cast<const void*>(this) != nullptr);
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
for (const TxnLog* current = this; current; current = current->parent)
|
|
|
|
{
|
2022-04-15 00:57:43 +01:00
|
|
|
if (auto it = current->typeVarChanges.find(ty))
|
|
|
|
return it->get();
|
2022-01-07 01:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingTypePack* TxnLog::pending(TypePackId tp) const
|
|
|
|
{
|
2022-02-11 19:02:09 +00:00
|
|
|
// This function will technically work if `this` is nullptr, but this
|
|
|
|
// indicates a bug, so we explicitly assert.
|
|
|
|
LUAU_ASSERT(static_cast<const void*>(this) != nullptr);
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
for (const TxnLog* current = this; current; current = current->parent)
|
|
|
|
{
|
2022-04-15 00:57:43 +01:00
|
|
|
if (auto it = current->typePackChanges.find(tp))
|
|
|
|
return it->get();
|
2022-01-07 01:46:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-01-04 20:53:17 +00:00
|
|
|
PendingType* TxnLog::replace(TypeId ty, Type replacement)
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
|
|
|
PendingType* newTy = queue(ty);
|
2022-07-08 02:22:39 +01:00
|
|
|
newTy->pending.reassign(replacement);
|
2022-01-07 01:46:53 +00:00
|
|
|
return newTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingTypePack* TxnLog::replace(TypePackId tp, TypePackVar replacement)
|
|
|
|
{
|
|
|
|
PendingTypePack* newTp = queue(tp);
|
2022-07-08 02:22:39 +01:00
|
|
|
newTp->pending.reassign(replacement);
|
2022-01-07 01:46:53 +00:00
|
|
|
return newTp;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingType* TxnLog::bindTable(TypeId ty, std::optional<TypeId> newBoundTo)
|
|
|
|
{
|
2023-01-04 20:53:17 +00:00
|
|
|
LUAU_ASSERT(get<TableType>(ty));
|
2023-03-10 20:21:07 +00:00
|
|
|
LUAU_ASSERT(ty != newBoundTo);
|
2022-01-07 01:46:53 +00:00
|
|
|
|
|
|
|
PendingType* newTy = queue(ty);
|
2023-01-04 20:53:17 +00:00
|
|
|
if (TableType* ttv = Luau::getMutable<TableType>(newTy))
|
2022-01-07 01:46:53 +00:00
|
|
|
ttv->boundTo = newBoundTo;
|
|
|
|
|
|
|
|
return newTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingType* TxnLog::changeLevel(TypeId ty, TypeLevel newLevel)
|
|
|
|
{
|
2023-01-04 20:53:17 +00:00
|
|
|
LUAU_ASSERT(get<FreeType>(ty) || get<TableType>(ty) || get<FunctionType>(ty));
|
2022-01-07 01:46:53 +00:00
|
|
|
|
|
|
|
PendingType* newTy = queue(ty);
|
2023-01-04 20:53:17 +00:00
|
|
|
if (FreeType* ftv = Luau::getMutable<FreeType>(newTy))
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
|
|
|
ftv->level = newLevel;
|
|
|
|
}
|
2023-01-04 20:53:17 +00:00
|
|
|
else if (TableType* ttv = Luau::getMutable<TableType>(newTy))
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
|
|
|
LUAU_ASSERT(ttv->state == TableState::Free || ttv->state == TableState::Generic);
|
|
|
|
ttv->level = newLevel;
|
|
|
|
}
|
2023-01-04 20:53:17 +00:00
|
|
|
else if (FunctionType* ftv = Luau::getMutable<FunctionType>(newTy))
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
|
|
|
ftv->level = newLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingTypePack* TxnLog::changeLevel(TypePackId tp, TypeLevel newLevel)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(get<FreeTypePack>(tp));
|
|
|
|
|
|
|
|
PendingTypePack* newTp = queue(tp);
|
|
|
|
if (FreeTypePack* ftp = Luau::getMutable<FreeTypePack>(newTp))
|
|
|
|
{
|
|
|
|
ftp->level = newLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newTp;
|
|
|
|
}
|
|
|
|
|
2022-09-29 23:23:10 +01:00
|
|
|
PendingType* TxnLog::changeScope(TypeId ty, NotNull<Scope> newScope)
|
|
|
|
{
|
2023-01-04 20:53:17 +00:00
|
|
|
LUAU_ASSERT(get<FreeType>(ty) || get<TableType>(ty) || get<FunctionType>(ty));
|
2022-09-29 23:23:10 +01:00
|
|
|
|
|
|
|
PendingType* newTy = queue(ty);
|
2023-01-04 20:53:17 +00:00
|
|
|
if (FreeType* ftv = Luau::getMutable<FreeType>(newTy))
|
2022-09-29 23:23:10 +01:00
|
|
|
{
|
|
|
|
ftv->scope = newScope;
|
|
|
|
}
|
2023-01-04 20:53:17 +00:00
|
|
|
else if (TableType* ttv = Luau::getMutable<TableType>(newTy))
|
2022-09-29 23:23:10 +01:00
|
|
|
{
|
|
|
|
LUAU_ASSERT(ttv->state == TableState::Free || ttv->state == TableState::Generic);
|
|
|
|
ttv->scope = newScope;
|
|
|
|
}
|
2023-01-04 20:53:17 +00:00
|
|
|
else if (FunctionType* ftv = Luau::getMutable<FunctionType>(newTy))
|
2022-09-29 23:23:10 +01:00
|
|
|
{
|
|
|
|
ftv->scope = newScope;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingTypePack* TxnLog::changeScope(TypePackId tp, NotNull<Scope> newScope)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(get<FreeTypePack>(tp));
|
|
|
|
|
|
|
|
PendingTypePack* newTp = queue(tp);
|
|
|
|
if (FreeTypePack* ftp = Luau::getMutable<FreeTypePack>(newTp))
|
|
|
|
{
|
|
|
|
ftp->scope = newScope;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newTp;
|
|
|
|
}
|
|
|
|
|
2022-01-07 01:46:53 +00:00
|
|
|
PendingType* TxnLog::changeIndexer(TypeId ty, std::optional<TableIndexer> indexer)
|
|
|
|
{
|
2023-01-04 20:53:17 +00:00
|
|
|
LUAU_ASSERT(get<TableType>(ty));
|
2022-01-07 01:46:53 +00:00
|
|
|
|
|
|
|
PendingType* newTy = queue(ty);
|
2023-01-04 20:53:17 +00:00
|
|
|
if (TableType* ttv = Luau::getMutable<TableType>(newTy))
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
|
|
|
ttv->indexer = indexer;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<TypeLevel> TxnLog::getLevel(TypeId ty) const
|
|
|
|
{
|
2023-01-04 20:53:17 +00:00
|
|
|
if (FreeType* ftv = getMutable<FreeType>(ty))
|
2022-01-07 01:46:53 +00:00
|
|
|
return ftv->level;
|
2023-01-04 20:53:17 +00:00
|
|
|
else if (TableType* ttv = getMutable<TableType>(ty); ttv && (ttv->state == TableState::Free || ttv->state == TableState::Generic))
|
2022-01-07 01:46:53 +00:00
|
|
|
return ttv->level;
|
2023-01-04 20:53:17 +00:00
|
|
|
else if (FunctionType* ftv = getMutable<FunctionType>(ty))
|
2022-01-07 01:46:53 +00:00
|
|
|
return ftv->level;
|
|
|
|
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-02-04 16:45:57 +00:00
|
|
|
TypeId TxnLog::follow(TypeId ty) const
|
2022-01-07 01:46:53 +00:00
|
|
|
{
|
|
|
|
return Luau::follow(ty, [this](TypeId ty) {
|
|
|
|
PendingType* state = this->pending(ty);
|
|
|
|
|
|
|
|
if (state == nullptr)
|
|
|
|
return ty;
|
|
|
|
|
|
|
|
// Ugly: Fabricate a TypeId that doesn't adhere to most of the invariants
|
|
|
|
// that normally apply. This is safe because follow will only call get<>
|
|
|
|
// on the returned pointer.
|
2023-01-04 20:53:17 +00:00
|
|
|
return const_cast<const Type*>(&state->pending);
|
2022-01-07 01:46:53 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TypePackId TxnLog::follow(TypePackId tp) const
|
|
|
|
{
|
|
|
|
return Luau::follow(tp, [this](TypePackId tp) {
|
|
|
|
PendingTypePack* state = this->pending(tp);
|
|
|
|
|
|
|
|
if (state == nullptr)
|
|
|
|
return tp;
|
|
|
|
|
|
|
|
// Ugly: Fabricate a TypePackId that doesn't adhere to most of the
|
|
|
|
// invariants that normally apply. This is safe because follow will
|
|
|
|
// only call get<> on the returned pointer.
|
|
|
|
return const_cast<const TypePackVar*>(&state->pending);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-08-25 22:53:50 +01:00
|
|
|
std::pair<std::vector<TypeId>, std::vector<TypePackId>> TxnLog::getChanges() const
|
|
|
|
{
|
|
|
|
std::pair<std::vector<TypeId>, std::vector<TypePackId>> result;
|
|
|
|
|
|
|
|
for (const auto& [typeId, _newState] : typeVarChanges)
|
|
|
|
result.first.push_back(typeId);
|
|
|
|
for (const auto& [typePackId, _newState] : typePackChanges)
|
|
|
|
result.second.push_back(typePackId);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-10-29 21:25:12 +01:00
|
|
|
} // namespace Luau
|