2022-06-17 09:05:14 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
#include "Luau/Ast.h" // Used for some of the enumerations
|
2022-10-22 01:54:01 +08:00
|
|
|
#include "Luau/Def.h"
|
2022-06-17 09:05:14 +08:00
|
|
|
#include "Luau/NotNull.h"
|
2022-08-05 06:35:33 +08:00
|
|
|
#include "Luau/TypeVar.h"
|
2022-10-22 01:54:01 +08:00
|
|
|
#include "Luau/Variant.h"
|
2022-06-17 09:05:14 +08:00
|
|
|
|
2022-06-24 09:56:00 +08:00
|
|
|
#include <string>
|
2022-06-17 09:05:14 +08:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
|
2022-07-29 12:24:07 +08:00
|
|
|
struct Scope;
|
|
|
|
|
2022-06-17 09:05:14 +08:00
|
|
|
struct TypeVar;
|
|
|
|
using TypeId = const TypeVar*;
|
|
|
|
|
|
|
|
struct TypePackVar;
|
|
|
|
using TypePackId = const TypePackVar*;
|
|
|
|
|
|
|
|
// subType <: superType
|
|
|
|
struct SubtypeConstraint
|
|
|
|
{
|
|
|
|
TypeId subType;
|
|
|
|
TypeId superType;
|
|
|
|
};
|
|
|
|
|
|
|
|
// subPack <: superPack
|
|
|
|
struct PackSubtypeConstraint
|
|
|
|
{
|
|
|
|
TypePackId subPack;
|
|
|
|
TypePackId superPack;
|
|
|
|
};
|
|
|
|
|
2022-08-26 05:53:50 +08:00
|
|
|
// generalizedType ~ gen sourceType
|
2022-06-17 09:05:14 +08:00
|
|
|
struct GeneralizationConstraint
|
|
|
|
{
|
|
|
|
TypeId generalizedType;
|
|
|
|
TypeId sourceType;
|
|
|
|
};
|
|
|
|
|
|
|
|
// subType ~ inst superType
|
|
|
|
struct InstantiationConstraint
|
|
|
|
{
|
|
|
|
TypeId subType;
|
|
|
|
TypeId superType;
|
|
|
|
};
|
|
|
|
|
2022-07-01 07:52:43 +08:00
|
|
|
struct UnaryConstraint
|
|
|
|
{
|
|
|
|
AstExprUnary::Op op;
|
|
|
|
TypeId operandType;
|
|
|
|
TypeId resultType;
|
|
|
|
};
|
|
|
|
|
2022-09-02 07:14:03 +08:00
|
|
|
// let L : leftType
|
|
|
|
// let R : rightType
|
|
|
|
// in
|
|
|
|
// L op R : resultType
|
2022-07-01 07:52:43 +08:00
|
|
|
struct BinaryConstraint
|
|
|
|
{
|
|
|
|
AstExprBinary::Op op;
|
|
|
|
TypeId leftType;
|
|
|
|
TypeId rightType;
|
|
|
|
TypeId resultType;
|
|
|
|
};
|
|
|
|
|
2022-09-02 07:14:03 +08:00
|
|
|
// iteratee is iterable
|
|
|
|
// iterators is the iteration types.
|
|
|
|
struct IterableConstraint
|
|
|
|
{
|
|
|
|
TypePackId iterator;
|
|
|
|
TypePackId variables;
|
|
|
|
};
|
|
|
|
|
2022-06-24 09:56:00 +08:00
|
|
|
// name(namedType) = name
|
|
|
|
struct NameConstraint
|
|
|
|
{
|
|
|
|
TypeId namedType;
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
2022-08-05 06:35:33 +08:00
|
|
|
// target ~ inst target
|
|
|
|
struct TypeAliasExpansionConstraint
|
|
|
|
{
|
|
|
|
// Must be a PendingExpansionTypeVar.
|
|
|
|
TypeId target;
|
|
|
|
};
|
|
|
|
|
2022-09-02 07:14:03 +08:00
|
|
|
struct FunctionCallConstraint
|
|
|
|
{
|
2022-09-24 03:17:25 +08:00
|
|
|
std::vector<NotNull<const struct Constraint>> innerConstraints;
|
2022-09-02 07:14:03 +08:00
|
|
|
TypeId fn;
|
2022-09-30 06:23:10 +08:00
|
|
|
TypePackId argsPack;
|
2022-09-02 07:14:03 +08:00
|
|
|
TypePackId result;
|
2022-09-30 06:23:10 +08:00
|
|
|
class AstExprCall* callSite;
|
2022-09-02 07:14:03 +08:00
|
|
|
};
|
|
|
|
|
2022-09-24 03:17:25 +08:00
|
|
|
// result ~ prim ExpectedType SomeSingletonType MultitonType
|
|
|
|
//
|
|
|
|
// If ExpectedType is potentially a singleton (an actual singleton or a union
|
|
|
|
// that contains a singleton), then result ~ SomeSingletonType
|
|
|
|
//
|
|
|
|
// else result ~ MultitonType
|
|
|
|
struct PrimitiveTypeConstraint
|
|
|
|
{
|
|
|
|
TypeId resultType;
|
|
|
|
TypeId expectedType;
|
|
|
|
TypeId singletonType;
|
|
|
|
TypeId multitonType;
|
|
|
|
};
|
|
|
|
|
|
|
|
// result ~ hasProp type "prop_name"
|
|
|
|
//
|
|
|
|
// If the subject is a table, bind the result to the named prop. If the table
|
|
|
|
// has an indexer, bind it to the index result type. If the subject is a union,
|
|
|
|
// bind the result to the union of its constituents' properties.
|
|
|
|
//
|
|
|
|
// It would be nice to get rid of this constraint and someday replace it with
|
|
|
|
//
|
|
|
|
// T <: {p: X}
|
|
|
|
//
|
|
|
|
// Where {} describes an inexact shape type.
|
|
|
|
struct HasPropConstraint
|
|
|
|
{
|
|
|
|
TypeId resultType;
|
|
|
|
TypeId subjectType;
|
|
|
|
std::string prop;
|
|
|
|
};
|
|
|
|
|
2022-11-05 01:33:22 +08:00
|
|
|
// result ~ if isSingleton D then ~D else unknown where D = discriminantType
|
|
|
|
struct SingletonOrTopTypeConstraint
|
2022-10-22 01:54:01 +08:00
|
|
|
{
|
2022-11-05 01:33:22 +08:00
|
|
|
TypeId resultType;
|
2022-10-22 01:54:01 +08:00
|
|
|
TypeId discriminantType;
|
|
|
|
};
|
|
|
|
|
|
|
|
using ConstraintV = Variant<SubtypeConstraint, PackSubtypeConstraint, GeneralizationConstraint, InstantiationConstraint, UnaryConstraint,
|
|
|
|
BinaryConstraint, IterableConstraint, NameConstraint, TypeAliasExpansionConstraint, FunctionCallConstraint, PrimitiveTypeConstraint,
|
2022-11-05 01:33:22 +08:00
|
|
|
HasPropConstraint, SingletonOrTopTypeConstraint>;
|
2022-09-02 07:14:03 +08:00
|
|
|
|
2022-06-17 09:05:14 +08:00
|
|
|
struct Constraint
|
|
|
|
{
|
2022-09-02 07:14:03 +08:00
|
|
|
Constraint(NotNull<Scope> scope, const Location& location, ConstraintV&& c);
|
2022-06-17 09:05:14 +08:00
|
|
|
|
|
|
|
Constraint(const Constraint&) = delete;
|
|
|
|
Constraint& operator=(const Constraint&) = delete;
|
|
|
|
|
2022-09-02 07:14:03 +08:00
|
|
|
NotNull<Scope> scope;
|
2022-10-22 01:54:01 +08:00
|
|
|
Location location; // TODO: Extract this out into only the constraints that needs a location. Not all constraints needs locations.
|
2022-06-17 09:05:14 +08:00
|
|
|
ConstraintV c;
|
2022-09-02 07:14:03 +08:00
|
|
|
|
2022-06-17 09:05:14 +08:00
|
|
|
std::vector<NotNull<Constraint>> dependencies;
|
|
|
|
};
|
|
|
|
|
2022-09-24 03:17:25 +08:00
|
|
|
using ConstraintPtr = std::unique_ptr<Constraint>;
|
|
|
|
|
2022-06-17 09:05:14 +08:00
|
|
|
inline Constraint& asMutable(const Constraint& c)
|
|
|
|
{
|
|
|
|
return const_cast<Constraint&>(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
T* getMutable(Constraint& c)
|
|
|
|
{
|
|
|
|
return ::Luau::get_if<T>(&c.c);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
const T* get(const Constraint& c)
|
|
|
|
{
|
|
|
|
return getMutable<T>(asMutable(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Luau
|