Skip to content

Commit

Permalink
fix(lsp): respect types dependencies for tsc roots (#23825)
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn committed May 16, 2024
1 parent 7893ab9 commit f8956eb
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cli/lsp/documents.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ impl Documents {
self.dirty = false;
}

fn resolve_dependency(
pub fn resolve_dependency(
&self,
specifier: &ModuleSpecifier,
referrer: &ModuleSpecifier,
Expand Down
28 changes: 23 additions & 5 deletions cli/lsp/tsc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ use regex::Captures;
use regex::Regex;
use serde_repr::Deserialize_repr;
use serde_repr::Serialize_repr;
use std::borrow::Cow;
use std::cell::RefCell;
use std::cmp;
use std::collections::HashMap;
Expand Down Expand Up @@ -4261,12 +4262,12 @@ fn op_script_names(state: &mut OpState) -> Vec<String> {
// ensure this is first so it resolves the node types first
let specifier = "asset:///node_types.d.ts";
result.push(specifier.to_string());
seen.insert(specifier);
seen.insert(Cow::Borrowed(specifier));
}

// inject these next because they're global
for specifier in state.state_snapshot.resolver.graph_import_specifiers() {
if seen.insert(specifier.as_str()) {
if seen.insert(Cow::Borrowed(specifier.as_str())) {
result.push(specifier.to_string());
}
}
Expand All @@ -4278,10 +4279,27 @@ fn op_script_names(state: &mut OpState) -> Vec<String> {
.documents(DocumentsFilter::AllDiagnosable);
for doc in &docs {
let specifier = doc.specifier();
if seen.insert(specifier.as_str())
&& (doc.is_open() || specifier.scheme() == "file")
let is_open = doc.is_open();
if seen.insert(Cow::Borrowed(specifier.as_str()))
&& (is_open || specifier.scheme() == "file")
{
result.push(specifier.to_string());
let types_specifier = (|| {
let documents = &state.state_snapshot.documents;
let types = doc.maybe_types_dependency().maybe_specifier()?;
let (types, _) = documents.resolve_dependency(types, specifier)?;
let types_doc = documents.get(&types)?;
Some(types_doc.specifier().clone())
})();
// If there is a types dep, use that as the root instead. But if the doc
// is open, include both as roots.
if let Some(types_specifier) = &types_specifier {
if seen.insert(Cow::Owned(types_specifier.to_string())) {
result.push(types_specifier.to_string());
}
}
if types_specifier.is_none() || is_open {
result.push(specifier.to_string());
}
}
}

Expand Down
28 changes: 28 additions & 0 deletions tests/integration/lsp_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8954,6 +8954,34 @@ fn lsp_diagnostics_deno_types() {
client.shutdown();
}

#[test]
fn lsp_root_with_global_reference_types() {
let context = TestContextBuilder::new()
.use_http_server()
.use_temp_cwd()
.build();
let temp_dir = context.temp_dir();
let file = source_file(
temp_dir.path().join("file.ts"),
"import 'http://localhost:4545/subdir/foo_types.d.ts'; Foo.bar;",
);
let file2 = source_file(
temp_dir.path().join("file2.ts"),
r#"/// <reference types="http://localhost:4545/subdir/foo_types.d.ts" />"#,
);
let mut client = context.new_lsp_command().build();
client.initialize_default();
client.write_request(
"workspace/executeCommand",
json!({
"command": "deno.cache",
"arguments": [[], file2.uri()],
}),
);
let diagnostics = client.did_open_file(&file);
assert_eq!(json!(diagnostics.all()), json!([]));
}

#[test]
fn lsp_diagnostics_refresh_dependents() {
let context = TestContextBuilder::new().use_temp_cwd().build();
Expand Down

0 comments on commit f8956eb

Please sign in to comment.