Danny Tuppeny
Danny Tuppeny
@mrgnhnt96 could you provide the output of running: ``` flutter devices -v ``` Once with the phone connected wirelessly, and once with the phone connected with a USB cable? Also,...
@shujaatak sorry for the delay in responding. We can only set a single `type` on a semantic token and `parameter` here is consistent with what we do elsewhere (for example...
I started on this and realised that it wasn't as straight-forward as I'd first thought. For some context, the quick-fixes of note here, are that when there are diagnostics like...
We could modify `pubspec.yaml` to add the dependency ourselves, but it does mean we wouldn't get the version number (which `pub add` computes). Navigating to that file might require non-standard...
> `pub add --dry-run foo` Good idea, that would allow us to just modify the `pubspec.yaml` (I think we should try to get a json output if we did this...
I'm not sure if I'm seeing exactly the same as you, but I am seeing weird behaviour. I simplified the tests to: ```dart import 'package:test/test.dart'; import 'package:test_reflective_loader/test_reflective_loader.dart'; void main() {...
I made mine async (and added delays before/after the breakpoints) but I still see the same. Maybe there's some race that changes how it appears - I'll try to fix...
I somewhat understand what's happening here, though not sure how best to fix yet. When we start the debug session, we create a VS Code `TestRun` to record the results....
@FMorschel I went with 1, since I think it's the right fix (and conveniently it's also quite trivial). Are you set up to easily run Dart-Code from source to test...
@FMorschel could you try with the [debug-test-runs branch](https://github.com/Dart-Code/Dart-Code/tree/debug-test-runs)? It has some `console.log()`s that will print to the debug console of the parent VS Code window (the one with the Dart-Code...