diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-06-21 19:37:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 19:37:51 +0200 |
commit | a2f939b99c43c6344f109144d7b01c95294a6f8b (patch) | |
tree | 2d5ee64071eddffe5e9776a162f288793b2114b4 /runtime/examples/hello_runtime.rs | |
parent | 2c0e482221cd86fdbdc055c76f1c214200419946 (diff) |
refactor(core): always attach inspector to isolate (#11042)
This commit changes "deno_core::JsRuntime" to always create
"deno_core::JsRuntimeInspector" instance.
Diffstat (limited to 'runtime/examples/hello_runtime.rs')
-rw-r--r-- | runtime/examples/hello_runtime.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs index 28ea64043..af2f64892 100644 --- a/runtime/examples/hello_runtime.rs +++ b/runtime/examples/hello_runtime.rs @@ -32,7 +32,6 @@ async fn main() -> Result<(), AnyError> { seed: None, js_error_create_fn: None, create_web_worker_cb, - attach_inspector: false, maybe_inspector_server: None, should_break_on_first_statement: false, module_loader, |