Danny Tuppeny

Results 216 issues of Danny Tuppeny

For auto-imported constructors, code completion is no longer showing the dartdoc from the class: Maybe related to changes to use an `ElementLocation` for resolving?

is bug
in editor
in lsp/analysis server

See https://github.com/flutter/devtools/issues/1792 https://github.com/dart-lang/sdk/blob/master/pkg/dds/dds_protocol.md#requirepermissiontoresume This will also require that we don't mess with another clients breakpoints: https://github.com/flutter/devtools/issues/1792#issuecomment-1040609522

is enhancement
in debugger

If https://github.com/flutter/flutter/pull/121373 remains, we need to stop trying to send this flag for newer SDK versions.

is bug
blocked on dart / flutter
in flutter

Currently we just restart the whole extension. This means we can't automatically restart a failing daemon without user input, because it'll be quite disruptive (re-triggering analysis, etc.). We should wrap...

is enhancement

I followed the instructions on Windows.. I had to use 7zip to extract the .tar.gz, and initially I put it in a folder named `pwn3` but that failed to build....

### What happened? The [PR from dependabot to upgrade to v4](https://github.com/Dart-Code/Dart-Code/pull/4900) is failing on my project with this error: > Error: Failed to CreateArtifact: Received non-retryable error: Failed request: (409)...

bug

In VS Code/LSP I'd like to add support for re-wrapping comments (eg. you insert/delete words in a comment that mean they're no longer wrapped nicely at 80 characters, and fixing...

enhancement
--fix

I'm not sure if this is strictly a bug, but it feels incorrect. I was investigating an issue at https://github.com/Dart-Code/Dart-Code/issues/4865 where sometimes lots of blank lines were being added when...

bug

Split from https://github.com/Dart-Code/Dart-Code/issues/3270#issuecomment-820285360. There's some generated LSP code that includes some very long expressions, and it seems to take a while to format. --- Repro: ``` ~/Dev/Dart\ SDKs/nightly-2021-04-06/bin/dart format --version...

performance

I'm not sure if this is a valid pattern, but while looking at #52880 I tried to use `"{**/,}foo.dart"`, but it resulted in an exception: ```dart print(Glob('{**/,}foo.dart').matches("c:\\foo\\bar.txt")); ``` ``` Unhandled...