/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/OneScript.Language/LexicalAnalysis/LexemType.cs
29 строк
743 B
Andrei Ovsiankin
Лексер для меток
19 окт 2023, 11:08
19 окт 2023, 11:08
8fa327f
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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 enum LexemType { NotALexem, Identifier, Operator, StringLiteral, DateLiteral, NumberLiteral, BooleanLiteral, UndefinedLiteral, NullLiteral, EndOperator, PreprocessorDirective, Annotation, Comment, Label, LabelRef, EndOfText } }