using Qrakhen.Qamp.Core.Tokenization;
namespace Qrakhen.Qamp.Core;
public interface IReader<out T>
{
TokenPosition CurrentPosition { get; }
bool Done { get; }
T NextToken(bool includeCompilationIrrelevant = false);
}