/
smwwiki
/
OneScript_fork
Обзор
Документация
Войти
/
smwwiki
/
OneScript_fork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/OneScript.DebugServices/BreakpointDescriptor.cs
25 строк
646 B
akpaevj
Добавлена функция остановки по условию при отладке
03 авг 2024, 00:05
03 авг 2024, 00:05
4e53be2
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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.DebugServices { internal class BreakpointDescriptor { public string Module; public int LineNumber; public string Condition; public BreakpointDescriptor(int id) { BreakpointId = id; } public int BreakpointId { get; } } }