mirror of
https://github.com/denoland/deno.git
synced 2025-08-02 10:02:23 +00:00
refactor: deno_runtime crate (#8640)
This commit moves Deno JS runtime, ops, permissions and inspector implementation to new "deno_runtime" crate located in "runtime/" directory. Details in "runtime/README.md". Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
This commit is contained in:
parent
84ef9bd21f
commit
2e74f164b6
99 changed files with 1127 additions and 458 deletions
|
@ -1,11 +1,11 @@
|
|||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
use crate::colors;
|
||||
use crate::inspector::InspectorSession;
|
||||
use deno_core::error::AnyError;
|
||||
use deno_core::serde_json;
|
||||
use deno_core::serde_json::json;
|
||||
use deno_core::url::Url;
|
||||
use deno_runtime::inspector::InspectorSession;
|
||||
use serde::Deserialize;
|
||||
|
||||
pub struct CoverageCollector {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue