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 "ConstantFolding.h" 5 6namespace Luau 7{ 8 9class AstNameTable; 10 11namespace Compile 12{ 13 14Constant foldBuiltin(AstNameTable& stringTable, int bfid, const Constant* args, size_t count); 15Constant foldBuiltinMath(AstName index); 16 17} // namespace Compile 18} // namespace Luau 19 20