Danny Tuppeny
Danny Tuppeny
This updates `pkg:test_reflective_loader` to the latest version of `pkg:test` and passes the locations of tests declarations through to `test()` calls. These locations are then used by `pkg:test` in the JSON...
`pkg:test` provides the locations of tests in the JSON reporter. We use these in VS Code to provide navigation to tests (and VS Code also shows failure messages inline against...
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...
This was originally raised at https://github.com/Dart-Code/Dart-Code/issues/5394 by @markbeij. Breakpoints in unnamed extensions don't seem to work on web, instead execution pauses on the parent frame and an error is printed:...
I just clicked "Clear all Results" in the test runner and VS Code was locked like this for probably around 20s:  Ideally this would be faster, but if it...
While trying to repro https://github.com/dart-lang/sdk/issues/60863 I was running the Dart analysis server from source and deleted a folder that was being watched as an analysis root. The process terminated with...
https://github.com/dart-lang/sdk/issues/60221 describes an issue where the VM Service fails to start. While debugging this, I noticed that the VM does not terminate in that case, which results in tests timing...
In https://github.com/Dart-Code/Dart-Code/pull/5367#issuecomment-2532490346 I noted the stack traces for some errors were not very useful because of minification/wasm. After discussing with @kenzieschmoll we believed this might be VS Code-specific so to...
Splitting this from https://github.com/flutter/devtools/issues/9168 @kenzieschmoll said: > When running DevTools inside your IDE (or launching the IDE-started DevTools in the browser), clicking on the link should navigate to the code...
If use of build_runner is expected to increase with macros going away, it could be good to have better integration with IDEs. Currently in VS Code we have some tasks...