using CanonSharp.Benchmark.Canon.Core.LexicalParser; namespace CanonSharp.Benchmark.Canon.Core.Abstractions; /// /// 词法分析器接口 /// public interface ILexer { public IEnumerable Tokenize(ISourceReader reader); }