diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-30 17:12:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 17:12:13 -0400 |
commit | 4a5642779e133425f4e6c75865de28952c761a8d (patch) | |
tree | 9035f4c4f1fbe8b287184edf16b2ebd0c53a4ff4 /cli/tools/check.rs | |
parent | b1c6142f741a507ba6594ab174065e00213100b9 (diff) |
fix: upgrade deno_ast 0.42 (#25313)
Diffstat (limited to 'cli/tools/check.rs')
-rw-r--r-- | cli/tools/check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/check.rs b/cli/tools/check.rs index 4ec677f8f..a2bfb9d9b 100644 --- a/cli/tools/check.rs +++ b/cli/tools/check.rs @@ -427,7 +427,7 @@ fn get_tsc_roots( // now walk the graph that only includes the fast check dependencies while let Some(specifier) = pending.pop_front() { - let Some(module) = graph.get(&specifier) else { + let Some(module) = graph.get(specifier) else { continue; }; if let Some(entry) = maybe_get_check_entry(module, check_js) { |