We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572b011 commit 6b83b33Copy full SHA for 6b83b33
vhdl_lang/src/analysis/completion.rs
@@ -364,9 +364,13 @@ impl DesignRoot {
364
self.list_available_declarations(library, selected)
365
}
366
_ => {
367
- let mut visitor = AutocompletionVisitor::new(self, cursor, tokens);
368
- self.walk(&mut visitor);
369
- visitor.completions
+ if false {
+ let mut visitor = AutocompletionVisitor::new(self, cursor, tokens);
+ self.walk(&mut visitor);
370
+ visitor.completions
371
+ } else {
372
+ vec![]
373
+ }
374
375
376
@@ -484,6 +488,7 @@ mod test {
484
488
assert_eq!(options.len(), 4);
485
489
486
490
491
+ #[ignore = "Temporarily disabled for performance reason"]
487
492
#[test]
493
pub fn completing_instantiation_statement() {
494
let mut input = LibraryBuilder::new();
0 commit comments