summaryrefslogtreecommitdiff
path: root/cli/module_loader.rs
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-11-19 08:56:04 -0800
committerGitHub <noreply@github.com>2024-11-19 08:56:04 -0800
commit628816448ea45807762fd8eb0c59302c9f2aac9a (patch)
tree909d67aa20b063bf74b9f3e1d31129e6d04d3a4d /cli/module_loader.rs
parent186b52731c6bb326c4d32905c5e732d082e83465 (diff)
refactor: update deno_doc, use prismjs, remove internal reference html generation logic (#26885)
Diffstat (limited to 'cli/module_loader.rs')
-rw-r--r--cli/module_loader.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/module_loader.rs b/cli/module_loader.rs
index 60de808b2..f985286d6 100644
--- a/cli/module_loader.rs
+++ b/cli/module_loader.rs
@@ -552,6 +552,7 @@ impl<TGraphContainer: ModuleGraphContainer>
)
}
None => specifier.into_owned(),
+ Some(Module::Wasm(_)) => todo!("@dsherret"),
};
Ok(specifier)
}
@@ -722,6 +723,7 @@ impl<TGraphContainer: ModuleGraphContainer>
| deno_graph::Module::Npm(_),
)
| None => Ok(None),
+ Some(deno_graph::Module::Wasm(_)) => todo!("@dsherret"),
}
}