diff options
Diffstat (limited to 'core/ops.rs')
-rw-r--r-- | core/ops.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ops.rs b/core/ops.rs index b766eb60d..372ffe5b2 100644 --- a/core/ops.rs +++ b/core/ops.rs @@ -1,10 +1,10 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use crate::error::AnyError; +use crate::error::GetErrorClassFn; use crate::gotham_state::GothamState; -use crate::realm::ContextState; use crate::resources::ResourceTable; -use crate::runtime::GetErrorClassFn; +use crate::runtime::ContextState; use crate::runtime::JsRuntimeState; use crate::OpDecl; use crate::OpsTracker; |