6 lines
246 B
C#
6 lines
246 B
C#
// Copyright (c) StellaOps. All rights reserved.
|
|
// Licensed under BUSL-1.1. See LICENSE in the project root.
|
|
namespace StellaOps.BinaryIndex.Decompiler;
|
|
|
|
internal readonly record struct Token(TokenType Type, string Value, int Line, int Column);
|