/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0.3-alpha
src/OneScript.Native/Compiler/DynamicModule.cs
29 строк
1016 B
EvilBeaver
Разделение типов рантайма по модулям
22 ноя 2021, 23:43
22 ноя 2021, 23:43
c528ba4
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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 System; using System.Collections.Generic; using OneScript.Contexts; using OneScript.Sources; namespace OneScript.Native.Compiler { public class DynamicModule : IExecutableModule { public IList<BslAnnotationAttribute> ModuleAttributes { get; } = new List<BslAnnotationAttribute>(); public IList<BslFieldInfo> Fields { get; } = new List<BslFieldInfo>(); public IList<BslPropertyInfo> Properties { get; } = new List<BslPropertyInfo>(); public IList<BslMethodInfo> Methods { get; } = new List<BslMethodInfo>(); public BslMethodInfo ModuleBody => throw new NotImplementedException(); public SourceCode Source { get; set; } } }