mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 14:03:35 +00:00
Merge #7028
7028: pit-of-success API for unresolved code actions r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
aebf7ee2b6
2 changed files with 14 additions and 14 deletions
|
@ -490,8 +490,18 @@ impl Analysis {
|
|||
.unwrap_or_default())
|
||||
}
|
||||
|
||||
/// Computes assists (aka code actions aka intentions) for the given
|
||||
/// position. Computes enough info to show the lightbulb list in the editor,
|
||||
/// but doesn't compute actual edits, to improve performance.
|
||||
///
|
||||
/// When the user clicks on the assist, call `resolve_assists` to get the
|
||||
/// edit.
|
||||
pub fn assists(&self, config: &AssistConfig, frange: FileRange) -> Cancelable<Vec<Assist>> {
|
||||
self.with_db(|db| Assist::unresolved(db, config, frange))
|
||||
}
|
||||
|
||||
/// Computes resolved assists with source changes for the given position.
|
||||
pub fn resolved_assists(
|
||||
pub fn resolve_assists(
|
||||
&self,
|
||||
config: &AssistConfig,
|
||||
frange: FileRange,
|
||||
|
@ -499,16 +509,6 @@ impl Analysis {
|
|||
self.with_db(|db| assists::Assist::resolved(db, config, frange))
|
||||
}
|
||||
|
||||
/// Computes unresolved assists (aka code actions aka intentions) for the given
|
||||
/// position.
|
||||
pub fn unresolved_assists(
|
||||
&self,
|
||||
config: &AssistConfig,
|
||||
frange: FileRange,
|
||||
) -> Cancelable<Vec<Assist>> {
|
||||
self.with_db(|db| Assist::unresolved(db, config, frange))
|
||||
}
|
||||
|
||||
/// Computes the set of diagnostics for the given file.
|
||||
pub fn diagnostics(
|
||||
&self,
|
||||
|
|
|
@ -946,12 +946,12 @@ pub(crate) fn handle_code_action(
|
|||
|
||||
if snap.config.client_caps.code_action_resolve {
|
||||
for (index, assist) in
|
||||
snap.analysis.unresolved_assists(&assists_config, frange)?.into_iter().enumerate()
|
||||
snap.analysis.assists(&assists_config, frange)?.into_iter().enumerate()
|
||||
{
|
||||
res.push(to_proto::unresolved_code_action(&snap, params.clone(), assist, index)?);
|
||||
}
|
||||
} else {
|
||||
for assist in snap.analysis.resolved_assists(&assists_config, frange)?.into_iter() {
|
||||
for assist in snap.analysis.resolve_assists(&assists_config, frange)?.into_iter() {
|
||||
res.push(to_proto::resolved_code_action(&snap, assist)?);
|
||||
}
|
||||
}
|
||||
|
@ -1014,7 +1014,7 @@ pub(crate) fn handle_code_action_resolve(
|
|||
.only
|
||||
.map(|it| it.into_iter().filter_map(from_proto::assist_kind).collect());
|
||||
|
||||
let assists = snap.analysis.resolved_assists(&snap.config.assist, frange)?;
|
||||
let assists = snap.analysis.resolve_assists(&snap.config.assist, frange)?;
|
||||
let (id, index) = split_once(¶ms.id, ':').unwrap();
|
||||
let index = index.parse::<usize>().unwrap();
|
||||
let assist = &assists[index];
|
||||
|
|
Loading…
Reference in a new issue