luau/Compiler/src/BuiltinFolding.h

16 lines
352 B
C
Raw Normal View History

2022-07-14 23:52:26 +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 "ConstantFolding.h"
namespace Luau
{
namespace Compile
{
Constant foldBuiltin(int bfid, const Constant* args, size_t count);
Constant foldBuiltinMath(AstName index);
2022-07-14 23:52:26 +01:00
} // namespace Compile
} // namespace Luau