Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 4d5e9df

Browse files
authored
Merge pull request #1700 from Mark-Simulacrum/fix-76474
Adjust for upstream changes
2 parents db6a9e0 + 6dba419 commit 4d5e9df

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
lines changed

rls-rustc/src/lib.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ pub fn run() -> Result<(), ()> {
7575
};
7676

7777
rustc_driver::install_ice_hook();
78-
rustc_driver::catch_fatal_errors(|| run_compiler(&args, &mut shim_calls, file_loader, None))
79-
.map(|_| ())
80-
.map_err(|_| ())
78+
rustc_driver::catch_fatal_errors(|| {
79+
run_compiler(&args, &mut shim_calls, file_loader, None, None)
80+
})
81+
.map(|_| ())
82+
.map_err(|_| ())
8183
}
8284

8385
#[derive(Default)]

rls/src/build/rustc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ fn run_in_process(
191191
&mut callbacks,
192192
Some(Box::new(ReplacedFileLoader::new(changed))),
193193
Some(Box::new(BufWriter(stderr))),
194+
None,
194195
)
195196
})
196197
}

tests/fixtures/hover/save_data/test_tooltip_mod_use_external.rs.0004_012.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
"col": 12
66
},
77
"data": {
8-
"Ok": [{
9-
"language": "rust",
10-
"value": "std/src/sync/mod.rs"
11-
},
12-
"Useful synchronization primitives.\n\n## The need for synchronization\n\nConceptually, a Rust program is a series of operations which will\nbe executed on a computer. The timeline of events happening in the\nprogram is consistent with the order of the operations in the code.\n\nConsider the following code, operating on some global static variables:\n\n```rust\nstatic mut A: u32 = 0;"
13-
]
8+
"Ok": []
149
}
1510
}

tests/fixtures/hover/save_data/test_tooltip_mod_use_external.rs.0005_012.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
"col": 12
66
},
77
"data": {
8-
"Ok": [{
9-
"language": "rust",
10-
"value": "std/src/sync/mod.rs"
11-
},
12-
"Useful synchronization primitives.\n\n## The need for synchronization\n\nConceptually, a Rust program is a series of operations which will\nbe executed on a computer. The timeline of events happening in the\nprogram is consistent with the order of the operations in the code.\n\nConsider the following code, operating on some global static variables:\n\n```rust\nstatic mut A: u32 = 0;"
13-
]
8+
"Ok": []
149
}
1510
}

0 commit comments

Comments
 (0)