2022-06-03 23:15:45 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
|
|
|
|
#include "Luau/ConstraintGraphBuilder.h"
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
const AstStat* getFallthrough(const AstStat* node); // TypeInfer.cpp
|
2022-06-03 23:15:45 +01:00
|
|
|
|
|
|
|
std::optional<TypeId> Scope2::lookup(Symbol sym)
|
|
|
|
{
|
|
|
|
Scope2* s = this;
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
auto it = s->bindings.find(sym);
|
|
|
|
if (it != s->bindings.end())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
if (s->parent)
|
|
|
|
s = s->parent;
|
|
|
|
else
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ConstraintGraphBuilder::ConstraintGraphBuilder(TypeArena* arena)
|
|
|
|
: singletonTypes(getSingletonTypes())
|
|
|
|
, arena(arena)
|
|
|
|
, rootScope(nullptr)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(arena);
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeId ConstraintGraphBuilder::freshType(Scope2* scope)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
return arena->addType(FreeTypeVar{scope});
|
|
|
|
}
|
|
|
|
|
|
|
|
TypePackId ConstraintGraphBuilder::freshTypePack(Scope2* scope)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
FreeTypePack f{scope};
|
|
|
|
return arena->addTypePack(TypePackVar{std::move(f)});
|
|
|
|
}
|
|
|
|
|
|
|
|
Scope2* ConstraintGraphBuilder::childScope(Location location, Scope2* parent)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(parent);
|
|
|
|
auto scope = std::make_unique<Scope2>();
|
|
|
|
Scope2* borrow = scope.get();
|
|
|
|
scopes.emplace_back(location, std::move(scope));
|
|
|
|
|
|
|
|
borrow->parent = parent;
|
|
|
|
borrow->returnType = parent->returnType;
|
|
|
|
parent->children.push_back(borrow);
|
|
|
|
|
|
|
|
return borrow;
|
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
void ConstraintGraphBuilder::addConstraint(Scope2* scope, ConstraintV cv, Location location)
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
2022-06-17 02:05:14 +01:00
|
|
|
scope->constraints.emplace_back(new Constraint{std::move(cv), location});
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::addConstraint(Scope2* scope, std::unique_ptr<Constraint> c)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
scope->constraints.emplace_back(std::move(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(AstStatBlock* block)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scopes.empty());
|
|
|
|
LUAU_ASSERT(rootScope == nullptr);
|
|
|
|
scopes.emplace_back(block->location, std::make_unique<Scope2>());
|
|
|
|
rootScope = scopes.back().second.get();
|
|
|
|
rootScope->returnType = freshTypePack(rootScope);
|
|
|
|
|
|
|
|
visit(rootScope, block);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStat* stat)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
if (auto s = stat->as<AstStatBlock>())
|
|
|
|
visit(scope, s);
|
|
|
|
else if (auto s = stat->as<AstStatLocal>())
|
|
|
|
visit(scope, s);
|
2022-06-17 02:05:14 +01:00
|
|
|
else if (auto f = stat->as<AstStatFunction>())
|
|
|
|
visit(scope, f);
|
2022-06-03 23:15:45 +01:00
|
|
|
else if (auto f = stat->as<AstStatLocalFunction>())
|
|
|
|
visit(scope, f);
|
|
|
|
else if (auto r = stat->as<AstStatReturn>())
|
|
|
|
visit(scope, r);
|
2022-06-17 02:05:14 +01:00
|
|
|
else if (auto a = stat->as<AstStatAssign>())
|
|
|
|
visit(scope, a);
|
|
|
|
else if (auto e = stat->as<AstStatExpr>())
|
|
|
|
checkPack(scope, e->expr);
|
|
|
|
else if (auto i = stat->as<AstStatIf>())
|
|
|
|
visit(scope, i);
|
2022-06-03 23:15:45 +01:00
|
|
|
else
|
|
|
|
LUAU_ASSERT(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatLocal* local)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
std::vector<TypeId> varTypes;
|
|
|
|
|
|
|
|
for (AstLocal* local : local->vars)
|
|
|
|
{
|
|
|
|
// TODO annotations
|
|
|
|
TypeId ty = freshType(scope);
|
|
|
|
varTypes.push_back(ty);
|
|
|
|
scope->bindings[local] = ty;
|
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
for (size_t i = 0; i < local->values.size; ++i)
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
2022-06-17 02:05:14 +01:00
|
|
|
if (local->values.data[i]->is<AstExprConstantNil>())
|
|
|
|
{
|
|
|
|
// HACK: we leave nil-initialized things floating under the assumption that they will later be populated.
|
|
|
|
// See the test TypeInfer/infer_locals_with_nil_value.
|
|
|
|
// Better flow awareness should make this obsolete.
|
|
|
|
}
|
|
|
|
else if (i == local->values.size - 1)
|
|
|
|
{
|
|
|
|
TypePackId exprPack = checkPack(scope, local->values.data[i]);
|
|
|
|
|
|
|
|
if (i < local->vars.size)
|
|
|
|
{
|
|
|
|
std::vector<TypeId> tailValues{varTypes.begin() + i, varTypes.end()};
|
|
|
|
TypePackId tailPack = arena->addTypePack(std::move(tailValues));
|
|
|
|
addConstraint(scope, PackSubtypeConstraint{exprPack, tailPack}, local->location);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
|
|
|
TypeId exprType = check(scope, local->values.data[i]);
|
2022-06-17 02:05:14 +01:00
|
|
|
if (i < varTypes.size())
|
|
|
|
addConstraint(scope, SubtypeConstraint{varTypes[i], exprType}, local->vars.data[i]->location);
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void addConstraints(Constraint* constraint, Scope2* scope)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
scope->constraints.reserve(scope->constraints.size() + scope->constraints.size());
|
|
|
|
|
|
|
|
for (const auto& c : scope->constraints)
|
2022-06-17 02:05:14 +01:00
|
|
|
constraint->dependencies.push_back(NotNull{c.get()});
|
2022-06-03 23:15:45 +01:00
|
|
|
|
|
|
|
for (Scope2* childScope : scope->children)
|
|
|
|
addConstraints(constraint, childScope);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatLocalFunction* function)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
// Local
|
|
|
|
// Global
|
|
|
|
// Dotted path
|
|
|
|
// Self?
|
|
|
|
|
|
|
|
TypeId functionType = nullptr;
|
|
|
|
auto ty = scope->lookup(function->name);
|
2022-06-17 02:05:14 +01:00
|
|
|
if (ty.has_value())
|
|
|
|
{
|
|
|
|
// TODO: This is duplicate definition of a local function. Is this allowed?
|
|
|
|
functionType = *ty;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
functionType = arena->addType(BlockedTypeVar{});
|
|
|
|
scope->bindings[function->name] = functionType;
|
|
|
|
}
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
auto [actualFunctionType, innerScope] = checkFunctionSignature(scope, function->func);
|
|
|
|
innerScope->bindings[function->name] = actualFunctionType;
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
checkFunctionBody(innerScope, function->func);
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
std::unique_ptr<Constraint> c{new Constraint{GeneralizationConstraint{functionType, actualFunctionType, innerScope}, function->location}};
|
|
|
|
addConstraints(c.get(), innerScope);
|
|
|
|
|
|
|
|
addConstraint(scope, std::move(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatFunction* function)
|
|
|
|
{
|
|
|
|
// Name could be AstStatLocal, AstStatGlobal, AstStatIndexName.
|
|
|
|
// With or without self
|
|
|
|
|
|
|
|
TypeId functionType = nullptr;
|
|
|
|
|
|
|
|
auto [actualFunctionType, innerScope] = checkFunctionSignature(scope, function->func);
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
if (AstExprLocal* localName = function->name->as<AstExprLocal>())
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
2022-06-17 02:05:14 +01:00
|
|
|
std::optional<TypeId> existingFunctionTy = scope->lookup(localName->local);
|
|
|
|
if (existingFunctionTy)
|
|
|
|
{
|
|
|
|
// Duplicate definition
|
|
|
|
functionType = *existingFunctionTy;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
functionType = arena->addType(BlockedTypeVar{});
|
|
|
|
scope->bindings[localName->local] = functionType;
|
|
|
|
}
|
|
|
|
innerScope->bindings[localName->local] = actualFunctionType;
|
|
|
|
}
|
|
|
|
else if (AstExprGlobal* globalName = function->name->as<AstExprGlobal>())
|
|
|
|
{
|
|
|
|
std::optional<TypeId> existingFunctionTy = scope->lookup(globalName->name);
|
|
|
|
if (existingFunctionTy)
|
|
|
|
{
|
|
|
|
// Duplicate definition
|
|
|
|
functionType = *existingFunctionTy;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
functionType = arena->addType(BlockedTypeVar{});
|
|
|
|
rootScope->bindings[globalName->name] = functionType;
|
|
|
|
}
|
|
|
|
innerScope->bindings[globalName->name] = actualFunctionType;
|
|
|
|
}
|
|
|
|
else if (AstExprIndexName* indexName = function->name->as<AstExprIndexName>())
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(0); // not yet implemented
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
checkFunctionBody(innerScope, function->func);
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
std::unique_ptr<Constraint> c{new Constraint{GeneralizationConstraint{functionType, actualFunctionType, innerScope}, function->location}};
|
2022-06-03 23:15:45 +01:00
|
|
|
addConstraints(c.get(), innerScope);
|
|
|
|
|
|
|
|
addConstraint(scope, std::move(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatReturn* ret)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
TypePackId exprTypes = checkPack(scope, ret->list);
|
2022-06-17 02:05:14 +01:00
|
|
|
addConstraint(scope, PackSubtypeConstraint{exprTypes, scope->returnType}, ret->location);
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatBlock* block)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
for (AstStat* stat : block->body)
|
|
|
|
visit(scope, stat);
|
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatAssign* assign)
|
|
|
|
{
|
|
|
|
TypePackId varPackId = checkExprList(scope, assign->vars);
|
|
|
|
TypePackId valuePack = checkPack(scope, assign->values);
|
|
|
|
|
|
|
|
addConstraint(scope, PackSubtypeConstraint{valuePack, varPackId}, assign->location);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::visit(Scope2* scope, AstStatIf* ifStatement)
|
|
|
|
{
|
|
|
|
check(scope, ifStatement->condition);
|
|
|
|
|
|
|
|
Scope2* thenScope = childScope(ifStatement->thenbody->location, scope);
|
|
|
|
visit(thenScope, ifStatement->thenbody);
|
|
|
|
|
|
|
|
if (ifStatement->elsebody)
|
|
|
|
{
|
|
|
|
Scope2* elseScope = childScope(ifStatement->elsebody->location, scope);
|
|
|
|
visit(elseScope, ifStatement->elsebody);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-03 23:15:45 +01:00
|
|
|
TypePackId ConstraintGraphBuilder::checkPack(Scope2* scope, AstArray<AstExpr*> exprs)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
|
|
|
if (exprs.size == 0)
|
|
|
|
return arena->addTypePack({});
|
|
|
|
|
|
|
|
std::vector<TypeId> types;
|
|
|
|
TypePackId last = nullptr;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < exprs.size; ++i)
|
|
|
|
{
|
|
|
|
if (i < exprs.size - 1)
|
|
|
|
types.push_back(check(scope, exprs.data[i]));
|
|
|
|
else
|
|
|
|
last = checkPack(scope, exprs.data[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
LUAU_ASSERT(last != nullptr);
|
|
|
|
|
|
|
|
return arena->addTypePack(TypePack{std::move(types), last});
|
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
TypePackId ConstraintGraphBuilder::checkExprList(Scope2* scope, const AstArray<AstExpr*>& exprs)
|
|
|
|
{
|
|
|
|
TypePackId result = arena->addTypePack({});
|
|
|
|
TypePack* resultPack = getMutable<TypePack>(result);
|
|
|
|
LUAU_ASSERT(resultPack);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < exprs.size; ++i)
|
|
|
|
{
|
|
|
|
AstExpr* expr = exprs.data[i];
|
|
|
|
if (i < exprs.size - 1)
|
|
|
|
resultPack->head.push_back(check(scope, expr));
|
|
|
|
else
|
|
|
|
resultPack->tail = checkPack(scope, expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resultPack->head.empty() && resultPack->tail)
|
|
|
|
return *resultPack->tail;
|
|
|
|
else
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-06-03 23:15:45 +01:00
|
|
|
TypePackId ConstraintGraphBuilder::checkPack(Scope2* scope, AstExpr* expr)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
TypePackId result = nullptr;
|
|
|
|
|
|
|
|
if (AstExprCall* call = expr->as<AstExprCall>())
|
|
|
|
{
|
|
|
|
std::vector<TypeId> args;
|
|
|
|
|
|
|
|
for (AstExpr* arg : call->args)
|
|
|
|
{
|
|
|
|
args.push_back(check(scope, arg));
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO self
|
|
|
|
|
|
|
|
TypeId fnType = check(scope, call->func);
|
|
|
|
|
|
|
|
astOriginalCallTypes[call->func] = fnType;
|
|
|
|
|
|
|
|
TypeId instantiatedType = freshType(scope);
|
|
|
|
addConstraint(scope, InstantiationConstraint{instantiatedType, fnType}, expr->location);
|
|
|
|
|
|
|
|
TypePackId rets = freshTypePack(scope);
|
|
|
|
FunctionTypeVar ftv(arena->addTypePack(TypePack{args, {}}), rets);
|
|
|
|
TypeId inferredFnType = arena->addType(ftv);
|
|
|
|
|
|
|
|
addConstraint(scope, SubtypeConstraint{inferredFnType, instantiatedType}, expr->location);
|
|
|
|
result = rets;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TypeId t = check(scope, expr);
|
|
|
|
result = arena->addTypePack({t});
|
|
|
|
}
|
|
|
|
|
|
|
|
LUAU_ASSERT(result);
|
|
|
|
astTypePacks[expr] = result;
|
|
|
|
return result;
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TypeId ConstraintGraphBuilder::check(Scope2* scope, AstExpr* expr)
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(scope);
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
TypeId result = nullptr;
|
|
|
|
|
|
|
|
if (auto group = expr->as<AstExprGroup>())
|
|
|
|
result = check(scope, group->expr);
|
|
|
|
else if (expr->is<AstExprConstantString>())
|
|
|
|
result = singletonTypes.stringType;
|
|
|
|
else if (expr->is<AstExprConstantNumber>())
|
|
|
|
result = singletonTypes.numberType;
|
|
|
|
else if (expr->is<AstExprConstantBool>())
|
|
|
|
result = singletonTypes.booleanType;
|
|
|
|
else if (expr->is<AstExprConstantNil>())
|
|
|
|
result = singletonTypes.nilType;
|
2022-06-03 23:15:45 +01:00
|
|
|
else if (auto a = expr->as<AstExprLocal>())
|
|
|
|
{
|
|
|
|
std::optional<TypeId> ty = scope->lookup(a->local);
|
|
|
|
if (ty)
|
2022-06-17 02:05:14 +01:00
|
|
|
result = *ty;
|
|
|
|
else
|
|
|
|
result = singletonTypes.errorRecoveryType(); // FIXME? Record an error at this point?
|
|
|
|
}
|
|
|
|
else if (auto g = expr->as<AstExprGlobal>())
|
|
|
|
{
|
|
|
|
std::optional<TypeId> ty = scope->lookup(g->name);
|
|
|
|
if (ty)
|
|
|
|
result = *ty;
|
2022-06-03 23:15:45 +01:00
|
|
|
else
|
2022-06-17 02:05:14 +01:00
|
|
|
result = singletonTypes.errorRecoveryType(); // FIXME? Record an error at this point?
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
else if (auto a = expr->as<AstExprCall>())
|
|
|
|
{
|
2022-06-17 02:05:14 +01:00
|
|
|
TypePackId packResult = checkPack(scope, expr);
|
|
|
|
if (auto f = first(packResult))
|
|
|
|
return *f;
|
|
|
|
else if (get<FreeTypePack>(packResult))
|
|
|
|
{
|
|
|
|
TypeId typeResult = freshType(scope);
|
|
|
|
TypePack onePack{{typeResult}, freshTypePack(scope)};
|
|
|
|
TypePackId oneTypePack = arena->addTypePack(std::move(onePack));
|
|
|
|
|
|
|
|
addConstraint(scope, PackSubtypeConstraint{packResult, oneTypePack}, expr->location);
|
|
|
|
|
|
|
|
return typeResult;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (auto a = expr->as<AstExprFunction>())
|
|
|
|
{
|
|
|
|
auto [fnType, functionScope] = checkFunctionSignature(scope, a);
|
|
|
|
checkFunctionBody(functionScope, a);
|
|
|
|
return fnType;
|
|
|
|
}
|
|
|
|
else if (auto indexName = expr->as<AstExprIndexName>())
|
|
|
|
{
|
|
|
|
result = check(scope, indexName);
|
|
|
|
}
|
|
|
|
else if (auto table = expr->as<AstExprTable>())
|
|
|
|
{
|
|
|
|
result = checkExprTable(scope, table);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LUAU_ASSERT(0);
|
|
|
|
result = freshType(scope);
|
|
|
|
}
|
|
|
|
|
|
|
|
LUAU_ASSERT(result);
|
|
|
|
astTypes[expr] = result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeId ConstraintGraphBuilder::check(Scope2* scope, AstExprIndexName* indexName)
|
|
|
|
{
|
|
|
|
TypeId obj = check(scope, indexName->expr);
|
|
|
|
TypeId result = freshType(scope);
|
|
|
|
|
|
|
|
TableTypeVar::Props props{{indexName->index.value, Property{result}}};
|
|
|
|
const std::optional<TableIndexer> indexer;
|
|
|
|
TableTypeVar ttv{std::move(props), indexer, TypeLevel{}, TableState::Free};
|
|
|
|
|
|
|
|
TypeId expectedTableType = arena->addType(std::move(ttv));
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
addConstraint(scope, SubtypeConstraint{obj, expectedTableType}, indexName->location);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
TypeId ConstraintGraphBuilder::checkExprTable(Scope2* scope, AstExprTable* expr)
|
|
|
|
{
|
|
|
|
TypeId ty = arena->addType(TableTypeVar{});
|
|
|
|
TableTypeVar* ttv = getMutable<TableTypeVar>(ty);
|
|
|
|
LUAU_ASSERT(ttv);
|
|
|
|
|
|
|
|
auto createIndexer = [this, scope, ttv](
|
|
|
|
TypeId currentIndexType, TypeId currentResultType, Location itemLocation, std::optional<Location> keyLocation) {
|
|
|
|
if (!ttv->indexer)
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
2022-06-17 02:05:14 +01:00
|
|
|
TypeId indexType = this->freshType(scope);
|
|
|
|
TypeId resultType = this->freshType(scope);
|
|
|
|
ttv->indexer = TableIndexer{indexType, resultType};
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
addConstraint(scope, SubtypeConstraint{ttv->indexer->indexType, currentIndexType}, keyLocation ? *keyLocation : itemLocation);
|
|
|
|
addConstraint(scope, SubtypeConstraint{ttv->indexer->indexResultType, currentResultType}, itemLocation);
|
|
|
|
};
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
for (const AstExprTable::Item& item : expr->items)
|
|
|
|
{
|
|
|
|
TypeId itemTy = check(scope, item.value);
|
2022-06-03 23:15:45 +01:00
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
if (item.key)
|
|
|
|
{
|
|
|
|
// Even though we don't need to use the type of the item's key if
|
|
|
|
// it's a string constant, we still want to check it to populate
|
|
|
|
// astTypes.
|
|
|
|
TypeId keyTy = check(scope, item.key);
|
|
|
|
|
|
|
|
if (AstExprConstantString* key = item.key->as<AstExprConstantString>())
|
|
|
|
{
|
|
|
|
ttv->props[key->value.begin()] = {itemTy};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
createIndexer(keyTy, itemTy, item.value->location, item.key->location);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TypeId numberType = singletonTypes.numberType;
|
|
|
|
createIndexer(numberType, itemTy, item.value->location, std::nullopt);
|
|
|
|
}
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
2022-06-17 02:05:14 +01:00
|
|
|
|
|
|
|
return ty;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<TypeId, Scope2*> ConstraintGraphBuilder::checkFunctionSignature(Scope2* parent, AstExprFunction* fn)
|
|
|
|
{
|
|
|
|
Scope2* innerScope = childScope(fn->body->location, parent);
|
|
|
|
TypePackId returnType = freshTypePack(innerScope);
|
|
|
|
innerScope->returnType = returnType;
|
|
|
|
|
|
|
|
std::vector<TypeId> argTypes;
|
|
|
|
|
|
|
|
for (AstLocal* local : fn->args)
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
2022-06-17 02:05:14 +01:00
|
|
|
TypeId t = freshType(innerScope);
|
|
|
|
argTypes.push_back(t);
|
|
|
|
innerScope->bindings[local] = t; // TODO annotations
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionTypeVar actualFunction{arena->addTypePack(argTypes), returnType};
|
|
|
|
TypeId actualFunctionType = arena->addType(std::move(actualFunction));
|
|
|
|
LUAU_ASSERT(actualFunctionType);
|
|
|
|
astTypes[fn] = actualFunctionType;
|
|
|
|
|
|
|
|
return {actualFunctionType, innerScope};
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConstraintGraphBuilder::checkFunctionBody(Scope2* scope, AstExprFunction* fn)
|
|
|
|
{
|
|
|
|
for (AstStat* stat : fn->body->body)
|
|
|
|
visit(scope, stat);
|
|
|
|
|
|
|
|
// If it is possible for execution to reach the end of the function, the return type must be compatible with ()
|
|
|
|
|
|
|
|
if (nullptr != getFallthrough(fn->body))
|
|
|
|
{
|
|
|
|
TypePackId empty = arena->addTypePack({}); // TODO we could have CSG retain one of these forever
|
|
|
|
addConstraint(scope, PackSubtypeConstraint{scope->returnType, empty}, fn->body->location);
|
2022-06-03 23:15:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
void collectConstraints(std::vector<NotNull<Constraint>>& result, Scope2* scope)
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
|
|
|
for (const auto& c : scope->constraints)
|
2022-06-17 02:05:14 +01:00
|
|
|
result.push_back(NotNull{c.get()});
|
2022-06-03 23:15:45 +01:00
|
|
|
|
|
|
|
for (Scope2* child : scope->children)
|
|
|
|
collectConstraints(result, child);
|
|
|
|
}
|
|
|
|
|
2022-06-17 02:05:14 +01:00
|
|
|
std::vector<NotNull<Constraint>> collectConstraints(Scope2* rootScope)
|
2022-06-03 23:15:45 +01:00
|
|
|
{
|
2022-06-17 02:05:14 +01:00
|
|
|
std::vector<NotNull<Constraint>> result;
|
2022-06-03 23:15:45 +01:00
|
|
|
collectConstraints(result, rootScope);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Luau
|