/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/ScriptEngine/Machine/Debugger/IBreakpointManager.cs
26 строк
818 B
EvilBeaver
Удалены использования IDebugController из основного кода
07 ноя 2025, 14:58
07 ноя 2025, 14:58
e3d265d
Код
Авторство
О чём код?
/*---------------------------------------------------------- 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 ScriptEngine.Machine { public interface IBreakpointManager { void SetExceptionBreakpoints((string Id, string Condition)[] filters); void SetBreakpoints(string module, (int Line, string Condition)[] breakpoints); bool StopOnAnyException(string message); bool StopOnUncaughtException(string message); bool FindBreakpoint(string module, int line); string GetCondition(string module, int line); void Clear(); } }