diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-03-27 16:09:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-27 16:09:51 -0400 |
commit | 2874664e9131616b71dd0d7d23750245b023833f (patch) | |
tree | 6782161aa151d00f930bc0157e95b14d895347f0 /core/lib.rs | |
parent | 8bcdb422e387a88075126d80e1612a30f5a7d89e (diff) |
feat: Support Inspector / Chrome Devtools (#4484)
This is a first pass implementation which is still missing several important
features:
- support for --inspect-brk (#4503)
- support for source maps (#4501)
- support for piping console.log to devtools console (#4502)
Co-authored-by: Bert Belder <bertbelder@gmail.com>
Co-authored-by: Matt Harrison <mt.harrison86@gmail.com>
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/lib.rs b/core/lib.rs index c4fbb33f4..d1776fb69 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -21,7 +21,7 @@ mod plugins; mod resources; mod shared_queue; -use rusty_v8 as v8; +pub use rusty_v8 as v8; pub use crate::any_error::*; pub use crate::es_isolate::*; |