11 lines
153 B
C#
11 lines
153 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Parser
|
|
{
|
|
public interface ILexer<T>
|
|
{
|
|
T NextToken();
|
|
List<T> ParseAll();
|
|
}
|
|
}
|