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