Files
2026-08-27 10:56:38 -06:00

11 lines
199 B
C#

using System.Reflection.Emit;
namespace ProtoBuf.Compiler;
internal readonly struct CodeLabel(Label value, int index)
{
public readonly Label Value = value;
public readonly int Index = index;
}