11 lines
199 B
C#
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;
|
|
}
|