mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
75a2e95714
* Fixed unions of `nil` types displaying as `?` * Internal normalization now handles class types which can make previously failing (incorrectly) sub-typing checks to succeed
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
#include "Luau/NotNull.h"
|
|
#include "Luau/Substitution.h"
|
|
#include "Luau/Type.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
struct TypeArena;
|
|
struct Scope;
|
|
struct InternalErrorReporter;
|
|
using ScopePtr = std::shared_ptr<Scope>;
|
|
|
|
// A substitution which replaces free types by any
|
|
struct Anyification : Substitution
|
|
{
|
|
Anyification(TypeArena* arena, NotNull<Scope> scope, NotNull<BuiltinTypes> builtinTypes, InternalErrorReporter* iceHandler, TypeId anyType,
|
|
TypePackId anyTypePack);
|
|
Anyification(TypeArena* arena, const ScopePtr& scope, NotNull<BuiltinTypes> builtinTypes, InternalErrorReporter* iceHandler, TypeId anyType,
|
|
TypePackId anyTypePack);
|
|
NotNull<Scope> scope;
|
|
NotNull<BuiltinTypes> builtinTypes;
|
|
InternalErrorReporter* iceHandler;
|
|
|
|
TypeId anyType;
|
|
TypePackId anyTypePack;
|
|
bool normalizationTooComplex = false;
|
|
bool isDirty(TypeId ty) override;
|
|
bool isDirty(TypePackId tp) override;
|
|
TypeId clean(TypeId ty) override;
|
|
TypePackId clean(TypePackId tp) override;
|
|
|
|
bool ignoreChildren(TypeId ty) override;
|
|
bool ignoreChildren(TypePackId ty) override;
|
|
};
|
|
|
|
} // namespace Luau
|