/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.2
src/OneScript.Language/LexicalAnalysis/ILexer.cs
16 строк
481 B
Andrei Ovsiankin
Старый лексемогенератор неудобен, распиливаем на новый ILexer и старый.
18 ноя 2020, 21:54
18 ноя 2020, 21:54
417d95c
Код
Авторство
О чём код?
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ namespace OneScript.Language.LexicalAnalysis { public interface ILexer { Lexem NextLexem(); SourceCodeIterator Iterator { get; set; } } }