mirror of
https://github.com/XWine1/XDLCompiler.git
synced 2026-07-24 12:32:21 -07:00
9 lines
280 B
C#
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;
|
|
}
|