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 4struct lua_State; 5 6void profilerStart(lua_State* L, int frequency); 7void profilerStop(); 8void profilerDump(const char* path); 9 10