Closed
Description
Repro:
lib.dart
class Class1 {
static void foo() {}
void bar() {}
}
main.dart
/// This is a dart doc.
/// It should show an auto-complete for Class1 over here: [C] but it doesn't.
/// Also should show autocomplete for instance values like bar over [Class1.] but it doesn't.
library main;
See here no items from Dart:
See here only triggering for static methods:
//CC @DanTup