Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/tests/ClassFixture.h
2723 views
1
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2
#pragma once
3
4
#include "Fixture.h"
5
6
namespace Luau
7
{
8
9
struct ExternTypeFixture : BuiltinsFixture
10
{
11
explicit ExternTypeFixture(bool prepareAutocomplete = false);
12
13
Frontend& getFrontend() override;
14
15
TypeId vector2Type;
16
TypeId vector2InstanceType;
17
};
18
19
} // namespace Luau
20
21