diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-11-19 08:56:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 08:56:04 -0800 |
commit | 628816448ea45807762fd8eb0c59302c9f2aac9a (patch) | |
tree | 909d67aa20b063bf74b9f3e1d31129e6d04d3a4d /cli/tsc/mod.rs | |
parent | 186b52731c6bb326c4d32905c5e732d082e83465 (diff) |
refactor: update deno_doc, use prismjs, remove internal reference html generation logic (#26885)
Diffstat (limited to 'cli/tsc/mod.rs')
-rw-r--r-- | cli/tsc/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tsc/mod.rs b/cli/tsc/mod.rs index 8f8bed20a..c9f726ca2 100644 --- a/cli/tsc/mod.rs +++ b/cli/tsc/mod.rs @@ -664,6 +664,7 @@ fn op_load_inner( &mut is_cjs, )?)) } + Module::Wasm(_) => todo!("@dsherret"), } } else if let Some(npm) = state .maybe_npm @@ -928,6 +929,7 @@ fn resolve_graph_specifier_types( })) } Some(Module::Node(_)) | None => Ok(None), + Some(Module::Wasm(_)) => todo!("@dsherret"), } } |