Danny Tuppeny
Danny Tuppeny
I think the issue here is in `package:glob` rather than the analyzer: ## Windows ``` **/main.dart main.dart false **/main.dart lib\main.dart true **/main.dart C:\Dev\Test Projects\globtest\main.dart false **/main.dart C:\Dev\Test Projects\globtest\lib\main.dart true /**/main.dart...
The server does have some existing support for this, where you can invoke "rename" on an `import` to change (or add/remove) its alias). However, there are some issues with VS...
Yeah, the VS Code issue is tracked at https://github.com/microsoft/vscode/issues/163929 The issue is that if we provide an empty range for the source being renamed, VS Code treats it like we...
I have a change open at https://dart-review.googlesource.com/c/sdk/+/379303 that allows the server to accept a DTD URI and connect to it, exposing the shared LSP handlers. I've also pushed a change...
The work for passing the DTD URI to the analysis server (and for it to connect) is done, but we're still behind a flag here because there's not been a...
I can reproduce this, and there are two issues I see intermittently, but unfortunately they appear to be issues in VS Code that will need fixing there. The first issue...
This turned out not to be a VS Code bug, but a difference between the the default value in the DAP spec versus VS Code. I have a fix open...
> also shows a logfile which shows that actually, it can find dart The message says that it can't find Dart _in the Flutter SDK_. For Flutter, we will only...
Great, thanks for the info. I think I can fix this by expanding the check for what we consider a Flutter SDK: https://github.com/Dart-Code/Dart-Code/blob/058ff8699e955e3ac4d1871df8672a2a8b1b29a7/src/extension/sdk/utils.ts#L552-L554 Right now we assume if we find...
Oh btw, I'm assuming that you can run `/opt/flutter/bin/flutter` with no problem (eg. `/opt/flutter/bin/flutter doctor` and `/opt/flutter/bin/flutter run`)? Since once I've fixed this, that's what we'll end up using from...