/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/jsinspector-modern/HostCommand.h
19 строк
445 B
Moti Zilberman
Add HostCommands for resuming and stepping debugger (#44080)
17 апр 2024, 10:58
17 апр 2024, 10:58
58ddd74
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once namespace facebook::react::jsinspector_modern { enum class HostCommand { /** Resumes JavaScript execution. */ DebuggerResume, /** Steps over the statement. */ DebuggerStepOver }; } // namespace facebook::react::jsinspector_modern