MParser/Lexer/ILexer.cs
2018-03-31 21:51:53 +02:00

11 lines
168 B
C#

using System.Collections.Generic;
namespace Lexer
{
public interface ILexer<T> where T : class
{
T NextToken();
List<T> ParseAll();
}
}