mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
assistant: Replace an expect
with a precondition check (#12292)
This PR replaces an `expect` with a precondition check to avoid a panic if the `LspAdapterDelegate` isn't set when invoking a slash command. Release Notes: - N/A
This commit is contained in:
parent
8450d63ed6
commit
78aaa29d5b
@ -1858,20 +1858,18 @@ impl Conversation {
|
||||
let name = &line[call.name];
|
||||
if let Some(call) = unchanged_call {
|
||||
new_calls.push(call);
|
||||
} else if let Some(command) = this.slash_command_registry.command(name) {
|
||||
} else if let Some((command, lsp_adapter_delegate)) = this
|
||||
.slash_command_registry
|
||||
.command(name)
|
||||
.zip(this.lsp_adapter_delegate.clone())
|
||||
{
|
||||
changed = true;
|
||||
let name = name.to_string();
|
||||
let source_range =
|
||||
buffer.anchor_after(offset)..buffer.anchor_before(line_end_offset);
|
||||
|
||||
let argument = call.argument.map(|range| &line[range]);
|
||||
let invocation = command.run(
|
||||
argument,
|
||||
this.lsp_adapter_delegate
|
||||
.clone()
|
||||
.expect("no LspAdapterDelegate present when invoking command"),
|
||||
cx,
|
||||
);
|
||||
let invocation = command.run(argument, lsp_adapter_delegate, cx);
|
||||
|
||||
new_calls.push(SlashCommandCall {
|
||||
name,
|
||||
|
Loading…
Reference in New Issue
Block a user