Re-export deno_core::url (#7525)

Also re-exports deno_core::futures and deno_core::serde_json but these are not yet used in the CLI.
This commit is contained in:
Ryan Dahl 2020-09-16 14:28:07 -04:00 committed by GitHub
parent c3ef358c01
commit 104aebdfb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 35 additions and 28 deletions

View file

@ -7,6 +7,7 @@ use crate::inspector::DenoInspector;
use crate::permissions::Permissions;
use deno_core::error::generic_error;
use deno_core::error::AnyError;
use deno_core::url::Url;
use deno_core::v8;
use deno_core::ModuleSpecifier;
use serde::Deserialize;
@ -16,7 +17,6 @@ use std::ops::Deref;
use std::ops::DerefMut;
use std::ptr;
use std::sync::Arc;
use url::Url;
pub struct CoverageCollector {
v8_channel: v8::inspector::ChannelBase,