MCPcopy Create free account
hub / github.com/Snapchat/Valdi / stopDebuggerServices

Method stopDebuggerServices

valdi/src/valdi/runtime/RuntimeManager.cpp:320–327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318 if (_debuggerServiceEnabled && _jsBridge != nullptr) {
319 _jsBridge->startJsDebuggerServer(*_logger);
320 }
321 if (kDebuggerServiceEnabled && _debuggerService != nullptr) {
322 _debuggerService->start();
323 }
324}
325
326void RuntimeManager::stopDebuggerServices() {
327 if (_debuggerServiceEnabled && _jsBridge != nullptr) {
328 _jsBridge->stopJsDebuggerServer();
329 }
330 if (kDebuggerServiceEnabled && _debuggerService != nullptr) {

Callers

nothing calls this directly

Calls 2

stopMethod · 0.65
stopJsDebuggerServerMethod · 0.45

Tested by

no test coverage detected