mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 21:40:43 +00:00
15 lines
311 B
C
15 lines
311 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 "ConstantFolding.h"
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
namespace Compile
|
||
|
{
|
||
|
|
||
|
Constant foldBuiltin(int bfid, const Constant* args, size_t count);
|
||
|
|
||
|
} // namespace Compile
|
||
|
} // namespace Luau
|