mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
15 lines
325 B
C#
15 lines
325 B
C#
namespace ZoneCodeGenerator.Parsing
|
|
{
|
|
interface ILexer
|
|
{
|
|
int CurrentLine { get; }
|
|
string CurrentFile { get; }
|
|
bool IsEndOfStream { get; }
|
|
int CachedTokenCount { get; }
|
|
|
|
string NextToken();
|
|
string PeekToken(int index = 0);
|
|
void SkipTokens(int count);
|
|
}
|
|
}
|