/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.3-alpha
src/OneScript.Native/Compiler/BslWalkerContext.cs
25 строк
763 B
EvilBeaver
Обобщение символов компиляции
24 дек 2021, 10:44
24 дек 2021, 10:44
5884a74
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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/. ----------------------------------------------------------*/ using OneScript.DependencyInjection; using OneScript.Language.SyntaxAnalysis; using OneScript.Runtime.Binding; using OneScript.Sources; namespace OneScript.Native.Compiler { public class BslWalkerContext { public SymbolTable Symbols { get; set; } public IErrorSink Errors { get; set; } public SourceCode Source { get; set; } public IServiceContainer Services { get; set; } } }