diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-06 21:44:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-06 21:44:29 +0200 |
| commit | f57a2c1e85387afe48b7bdb57176dafb156bb86e (patch) | |
| tree | c198f7c965a883acacc9c1410c620d6290cd43ef /cli/op_fetch_asset.rs | |
| parent | 16a9c92aba9ba8376393d6df4fa9677ac6113578 (diff) | |
refactor(core): rename CoreIsolate to JsRuntime (#7373)
deno_core/
- rename core_isolate.rs to runtime.rs
- rename CoreIsolate to JsRuntime
- rename JSError to JsError
- rename JSStackFrame to JsStackFrame
cli/
- update references from deno_core::CoreIsolate to deno_core::JsRuntime
- rename deno_core::JSError to deno_core::JsError
- rename fmt_errors::JSError to fmt_errors::JsError
Diffstat (limited to 'cli/op_fetch_asset.rs')
| -rw-r--r-- | cli/op_fetch_asset.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/op_fetch_asset.rs b/cli/op_fetch_asset.rs index 3becc43d7..c936a9370 100644 --- a/cli/op_fetch_asset.rs +++ b/cli/op_fetch_asset.rs @@ -81,7 +81,7 @@ fn get_asset(name: &str) -> Option<&'static str> { } /// Warning: Returns a non-JSON op dispatcher. Must be manually attached to -/// CoreIsolate. +/// JsRuntime. pub fn op_fetch_asset<H: std::hash::BuildHasher, S>( custom_assets: HashMap<String, PathBuf, H>, ) -> impl Fn(Rc<S>, BufVec) -> Op { |
