2023-06-16 18:35:18 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Luau/Ast.h"
|
2023-08-11 15:42:37 +01:00
|
|
|
#include "Luau/DenseHash.h"
|
2023-06-16 18:35:18 +01:00
|
|
|
|
2023-07-07 21:10:48 +01:00
|
|
|
#include <string>
|
|
|
|
|
2023-06-16 18:35:18 +01:00
|
|
|
namespace Luau
|
|
|
|
{
|
2023-07-07 21:10:48 +01:00
|
|
|
|
2023-07-14 19:08:53 +01:00
|
|
|
void buildTypeMap(DenseHashMap<AstExprFunction*, std::string>& typeMap, AstNode* root, const char* vectorType);
|
2023-07-07 21:10:48 +01:00
|
|
|
|
2023-06-16 18:35:18 +01:00
|
|
|
} // namespace Luau
|