summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2021-09-24 11:11:16 -0400
committerGitHub <noreply@github.com>2021-09-24 11:11:16 -0400
commit9705efd419ffa05b0d88e788e0ceb77e38078449 (patch)
tree92ec01259b29f158e6adb844c49bc05ac827ea82 /core/runtime.rs
parent01da1d0adc0d09d60eb765ac583be8108eb31e36 (diff)
refactor: Remove op_state parameter (#12202)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r--core/runtime.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index f2e804abb..9071463b5 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -2064,7 +2064,6 @@ pub mod tests {
impl ModuleLoader for ModsLoader {
fn resolve(
&self,
- _op_state: Rc<RefCell<OpState>>,
specifier: &str,
referrer: &str,
_is_main: bool,
@@ -2077,7 +2076,6 @@ pub mod tests {
fn load(
&self,
- _op_state: Rc<RefCell<OpState>>,
_module_specifier: &ModuleSpecifier,
_maybe_referrer: Option<ModuleSpecifier>,
_is_dyn_import: bool,