-
Notifications
You must be signed in to change notification settings - Fork 340
Closed
Labels
in editorRelates to code editing or language featuresRelates to code editing or language featuresin lsp/analysis serverSomething to be fixed in the Dart analysis serverSomething to be fixed in the Dart analysis serveris bugrelies on sdk changesSomething that requires changes in the Dart/Flutter SDK to ship before it will become availableSomething that requires changes in the Dart/Flutter SDK to ship before it will become available
Milestone
Description
In this code:
class Foo {
int call(int a, String b) {
return a + b.length;
}
}
void main() {
final foo = Foo();
foo.call( // Auto-complete and hints are helpful.
}when I write foo.call I get helpful auto-complete and hints about the signature of the method as expected, however I could call the same method using ():
void main() {
final foo = Foo();
foo( // No hints :(
}
Dart Code extension: 3.90.0
Flutter extension: 3.90.0 (activated)
App: Visual Studio Code
App Host: desktop
Remote: ssh-remote
Host Kind: ssh-remote
Version: linux 1.90.2
Workspace type: Dart, Flutter (LSP)
Dart (3.4.3)
Flutter (3.22.2)
Metadata
Metadata
Assignees
Labels
in editorRelates to code editing or language featuresRelates to code editing or language featuresin lsp/analysis serverSomething to be fixed in the Dart analysis serverSomething to be fixed in the Dart analysis serveris bugrelies on sdk changesSomething that requires changes in the Dart/Flutter SDK to ship before it will become availableSomething that requires changes in the Dart/Flutter SDK to ship before it will become available