mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-05 19:09:11 +00:00
42 lines
887 B
C
42 lines
887 B
C
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||
|
#pragma once
|
||
|
|
||
|
#include "ValueTracking.h"
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
struct CompileOptions;
|
||
|
}
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
namespace Compile
|
||
|
{
|
||
|
|
||
|
struct Builtin
|
||
|
{
|
||
|
AstName object;
|
||
|
AstName method;
|
||
|
|
||
|
bool empty() const
|
||
|
{
|
||
|
return object == AstName() && method == AstName();
|
||
|
}
|
||
|
|
||
|
bool isGlobal(const char* name) const
|
||
|
{
|
||
|
return object == AstName() && method == name;
|
||
|
}
|
||
|
|
||
|
bool isMethod(const char* table, const char* name) const
|
||
|
{
|
||
|
return object == table && method == name;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Builtin getBuiltin(AstExpr* node, const DenseHashMap<AstName, Global>& globals, const DenseHashMap<AstLocal*, Variable>& variables);
|
||
|
int getBuiltinFunctionId(const Builtin& builtin, const CompileOptions& options);
|
||
|
|
||
|
} // namespace Compile
|
||
|
} // namespace Luau
|