diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-12-11 18:49:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-11 18:49:26 +0100 |
commit | 65e72b68acf57da8462b8e7b057e7adb9393b698 (patch) | |
tree | 00e955e1186b9512b009acbb6ee80feb8a3f1733 /cli/inspector.rs | |
parent | 9414dee9e56a9f42c07ada4f8e1be864a1a1b936 (diff) |
refactor(cli): decouple ops from ProgramState and Flags (#8659)
This commit does major refactor of "Worker" and "WebWorker",
in order to decouple them from "ProgramState" and "Flags".
The main points of interest are "create_main_worker()" and
"create_web_worker_callback()" functions which are responsible
for creating "Worker" and "WebWorker" in CLI context.
As a result it is now possible to factor out common "runtime"
functionality into a separate crate.
Diffstat (limited to 'cli/inspector.rs')
-rw-r--r-- | cli/inspector.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/inspector.rs b/cli/inspector.rs index a8be68c8d..fa1bfa2d0 100644 --- a/cli/inspector.rs +++ b/cli/inspector.rs @@ -203,7 +203,7 @@ async fn server( warp::reply::json(&json!({ "Browser": format!("Deno/{}", crate::version::deno()), "Protocol-Version": "1.3", - "V8-Version": crate::version::v8(), + "V8-Version": deno_core::v8_version(), })) }); |