Danny Tuppeny
Danny Tuppeny
Based on discussions at https://github.com/dart-lang/linter/pull/3225#issuecomment-1036306676 and below, I think this change may be unnecessary as `always_use_package_imports` already covers this for within the lib folder. #3231 adds a note to the...
I think a good first step would be: 1. Try and get something running via a task in `task.json` that watches for changes in the BG (so you can make...
I've read this case a few times, but I don't totally understand the problem being described :( > I guess this might be a fundamental limitation of vscode? Debugging and...
Can someone explain the problem in simple terms? I'm not familiar with any of these tools yet, so a lot of the comments above didn't make much sense to me....
Aha, gotcha. I guess this is a similar problem to anything with virtual directories where the url structure isn't the same as on disk, so maybe it's not entirely Dart-specific....
@roblourens The long-term goal would be to invoke this all from [Dart Code](https://marketplace.visualstudio.com/items?itemName=Dart-Code.dart-code) - could we dynamically provide `sourceMapPathOverrides` and launch from another extension?
@roblourens Thanks for the info, seems like we have some options :) @rrousselGit > I tried that before. `sourceMapPathOverrides` is definitely not powerful enough From the sample given above, it...
I had a quick look, and I can't get source maps for the SDK to work in Chrome (no VS Code here, just running `pub run build_runner serve` and opening...
This is an unfortunate combination of a VS Code limitation and Dart/Flutter's stack trace format: https://github.com/microsoft/vscode/issues/150702 When VS Code parses a `file:///` URI, it only handles line/column numbers in some...
We discussed this a little yesterday. Changing the format may be an option, but is potentially breaking (for ex. for IntelliJ that may already parse this format) and doing so...