// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details1#pragma once23// Can be used to reconfigure visibility/exports for public APIs4#ifndef LUACODEGEN_API5#define LUACODEGEN_API extern6#endif78typedef struct lua_State lua_State;910// returns 1 if Luau code generator is supported, 0 otherwise11LUACODEGEN_API int luau_codegen_supported(void);1213// create an instance of Luau code generator. you must check that this feature is supported using luau_codegen_supported().14LUACODEGEN_API void luau_codegen_create(lua_State* L);1516// build target function and all inner functions17LUACODEGEN_API void luau_codegen_compile(lua_State* L, int idx);181920