mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 18:38:11 +03:00
Fix code generation for suggestion preview (#6054)
Fix a stupid typo introduced in #5770. It affected the code generated by CB while previewing suggestions.
This commit is contained in:
parent
ca0779c46b
commit
de008eb2c2
@ -652,7 +652,7 @@ impl Searcher {
|
||||
debug!("Previewing suggestion: \"{picked_suggestion:?}\".");
|
||||
self.clear_temporary_imports();
|
||||
|
||||
let has_this = self.this_var().is_none();
|
||||
let has_this = self.this_var().is_some();
|
||||
let preview_change =
|
||||
self.data.borrow().input.after_inserting_suggestion(&picked_suggestion, has_this)?;
|
||||
let preview_ast = self.ide.parser().parse_line_ast(preview_change.new_input).ok();
|
||||
|
Loading…
Reference in New Issue
Block a user