mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
chore(cli/coverage): remove unused runtime domain (#7749)
Previously when we used the websocket to talk to the inspector we used the runtime domain to send a "runIfWaitingForDebugger" message. However this is not required since we now talk to the inspector directly and no longer send said message so this removes the enabling of the domain entirely.
This commit is contained in:
parent
6587d1bce8
commit
970d412a08
1 changed files with 0 additions and 7 deletions
|
@ -128,10 +128,6 @@ impl CoverageCollector {
|
|||
.post_message("Debugger.enable".to_string(), None)
|
||||
.await?;
|
||||
|
||||
self
|
||||
.post_message("Runtime.enable".to_string(), None)
|
||||
.await?;
|
||||
|
||||
self
|
||||
.post_message("Profiler.enable".to_string(), None)
|
||||
.await?;
|
||||
|
@ -184,9 +180,6 @@ impl CoverageCollector {
|
|||
self
|
||||
.post_message("Profiler.disable".to_string(), None)
|
||||
.await?;
|
||||
self
|
||||
.post_message("Runtime.disable".to_string(), None)
|
||||
.await?;
|
||||
self
|
||||
.post_message("Debugger.disable".to_string(), None)
|
||||
.await?;
|
||||
|
|
Loading…
Reference in a new issue