Danny Tuppeny
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...
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...
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...
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,...
If I right-click on the "test" folder in `pkg:analyzer` and then "Run Tests", it fails like this:  It doesn't seem like we should need to provide all of the...
```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 =...
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...
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...
In https://github.com/Dart-Code/Dart-Code/issues/5086 we added lint docs to code completion:  However today I'm only seeing a single line of docs: 
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...