Danny Tuppeny

Results 1798 comments of Danny Tuppeny

There have been many issues here and I believe https://github.com/Dart-Code/Dart-Code/pull/5680 (which was in pre-release v3.119.20250909 and will be included in the next stable release) solves the remaining one. Here's a...

This seems to be caused by https://github.com/Dart-Code/Dart-Code/commit/70dca9345a264f9a5b12f4862a140627cf7ca176 which was to fix https://github.com/Dart-Code/Dart-Code/issues/5084. The issue is that during deactivate, we now try to terminate the analyzer process. If we do this...

I can reproduce the errors easily, but unfortunately I can't find a reliable way to fix it. Shutting down the LSP client seems to be complicated, because depending on the...

I think this is still blocked by https://github.com/microsoft/vscode-languageserver-node/issues/1559. The LSP client has some weird behaviour around when we should/shouldn't call stop that needs resolving/explaining so we can make sure we...

@networlddeveloper as noted above, this is currently blocked on behaviour of the VS Code LSP client. One workaround is to instead use the **Reload Window** command instead of just restarting...

> I mostly use it when the Flutter/Dart analyzer gets stuck or has trouble identifying Dart packages. It would be good to track down these issues - if you have...

@AlsoKnownAsZira please see my last two comments above: - https://github.com/Dart-Code/Dart-Code/issues/5285#issuecomment-2915743451 - https://github.com/Dart-Code/Dart-Code/issues/5285#issuecomment-2916134126

@AlsoKnownAsZira there are some links to Dart SDK issues (which is where the analyzer lives) in my second comment above about performance issues. I would encourage you to submit diagnostics...

I can't reproduce this, but while reviewing the logs I remembered that these CodeLenses do not come from the server, but are made client-side using the outline data. When we...

Ok, after some more digging in the log I found this which I _think_ occurred at the time you saw the delay: ``` 16:39:47.939,Req,{"jsonrpc":"2.0","id":429,"method":"workspace/executeCommand","params":{"command":"dart.edit.fixAll","arguments":[{"path":"C:\\Users\\felip_0vh5fa6\\Documents\\Projects\\clones\\dart-sdk2\\sdk\\pkg\\analysis_server\\test\\src\\services\\correction\\fix\\remove_unnecessary_inner_casts_test.dart","autoTriggered":true}]},"clientRequestTime":1728661187712} 16:39:55.628,Res,{"id":429,"jsonrpc":"2.0","result":null} ``` This is a 7...