Danny Tuppeny
Danny Tuppeny
ok, progress... I added this to the Dart debug adapter temporarily (just before the call to `service.addBreakpointWithScriptUri`: ```dart if (vmUri.path.contains('network_screen_test.dart')) { vmUri = Uri.parse('org-dartlang-app:/network_screen_test.dart'); } ``` And in the test...
I was able to repro this in an isolated project with the same results (although I needed to add `"debuggerType": 0` otherwise it tried to use `flutter attach` which then...
@jakemac53 I think there are a couple of different options here: 1. VS Code tells us the user is trying to "run all tests in the test folder" rather than...
@jakemac53 are there any conventions that would make sense to follow here? For example: - what should the flag be called? - what format should the file be (newline-separated, in...
I'm unable to reproduce this on my Macbook, so I'm pushing a change in the pre-release extension so that when this timeout occurs, if you're on a pre-release build and...
Yeah, we only show getters when you have `dart.experimentalInlineValuesProperties` enabled (and I'm still not entirely sure if we'll ultimately want to ship this on-by-default). But if we do/might, then we...
My original idea was that we'd keep it behind a flag for a while to get feedback, then switch to using the same flag (which defaults to `true`) as for...
I also think we should pass the whole strings over and let server decide what to do with that. It keeps the server in control of how it categorises things...
Maybe `--client-app-name` so it's grouped together with the existing `--client-x` flags? We'll need to add the flag to the server and get a version number before adding here (because presumably...
Assuming we add a new flag (`--client-app-name`?), there are some other questions: 1. Do we continue to use "VS-Code" and `VS-Code-Remote" for `--client-id`? (I don't know how much you care...