Danny Tuppeny

Results 216 issues of Danny Tuppeny

In a recent change I caused the Dart-Code tests to be sorted prior to running. After the change, the Flutter bot started failing with: ``` 1) extension activated: RangeError: Array...

is bug

While trying to help @srawlins get a debugger to a DevTools integration test that runs with `flutter drive`, I feel like I'm hitting a bug (that is beyond not just...

is bug
blocked on dart / flutter
in web
in flutter
in debugging

When we start the analysis server, was pass a "Client ID" which can be used in diagnostic reports and analytics. Currently this is one of two strings, depending on whether...

is enhancement
blocked on dart / flutter

When I run "Dart: New Project", it asks me for a template, then a folder. After selecting a folder there is multiple-second delay before it asks for a project name,...

is bug
in commands
is performance

If I right-click on the "test" folder in `pkg:analyzer` and then "Run Tests", it fails like this: ![Image](https://github.com/user-attachments/assets/a6ccce25-5aa8-4d49-ab2b-7c9b8ac03b55) It doesn't seem like we should need to provide all of the...

is bug
blocked on dart / flutter
in debugging
in testing

```dart import 'dart:developer'; var bar3 = 1; class A { String get bar1 => 'bar'; var bar2 = 1; void foo() { print(this.bar1); print(this.bar2); print(bar1); print(bar2); print(bar3); var a =...

is bug
in editor
in lsp/analysis server

Here I run a test file that has a single failure on it. It breaks on the exception for the test failure, and then I click "Continue", but it continues...

is bug
blocked on dart / flutter
in debugging
in testing

There's some discussion around https://github.com/dart-lang/dart_style/issues/1253#issuecomment-2660403292 about the default behaviour of completion being "replace". In particular, when completing at the start of an argument: ``` foo(arg1, ^arg2, arg3); ``` When invoking...

is enhancement
your feedback wanted!

In https://github.com/Dart-Code/Dart-Code/issues/5086 we added lint docs to code completion: ![Image](https://github.com/user-attachments/assets/6a2dd145-bdfc-4e1c-9c13-28c647edf186) However today I'm only seeing a single line of docs: ![Image](https://github.com/user-attachments/assets/5219fcdd-ca99-4d8c-a304-6304b33049a3)

is bug
blocked on dart / flutter
in editor

Consider: - User adds a breakpoint to line 10 - User inserts 5 new lines above line 10 (breakpoint is pushed to line 15 by the editor) - User hot...

is discussion / feedback