Files
git.stella-ops.org/src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/Token.cs
2026-02-04 19:59:20 +02:00

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);