Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/CLI/include/Luau/Counters.h
2727 views
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
struct lua_State;
5
6
void countersInit(lua_State* L);
7
bool countersActive();
8
9
void countersTrack(lua_State* L, int funcindex);
10
void countersDump(const char* path);
11
12