Files
XDLCompiler/source/TokenReaderState.cs
2025-03-15 19:52:41 +10:00

9 lines
280 B
C#

namespace XDLCompiler;
/// <summary>Stores the state of a <see cref="TokenReader"/>.</summary>
public readonly struct TokenReaderState(TextPosition position)
{
/// <summary>The line and column information.</summary>
public TextPosition Position { get; } = position;
}