Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/CodeGen/include/Luau/Label.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
#include <stdint.h>
5
6
namespace Luau
7
{
8
namespace CodeGen
9
{
10
11
struct Label
12
{
13
uint32_t id = 0;
14
uint32_t location = ~0u;
15
};
16
17
} // namespace CodeGen
18
} // namespace Luau
19
20