Danny Tuppeny

Results 1798 comments of Danny Tuppeny

I thought we might be able to handle this with VS Code's `LanguageConfiguration.wordPattern` to exclude the dollar, however it's valid to start a variable name with `$` in Dart, so...

Looks like we might get the line/col of hovers for evaluation requests in the debugger now (see https://github.com/microsoft/debug-adapter-protocol/issues/465), however I don't know if from the Dart VM Service we can...

This seems to be related to missing sources from the VM. I've opened https://github.com/flutter/flutter/issues/151167.

It turns out that the issue above might not be the main issue. The reason we're trying to get sources from the VM is that we failed to map onto...

Main fix is at https://github.com/flutter/flutter/pull/151170.

This may need cherry-picking into the next beta.

New Flutter beta has branched and included this fix, no cherry-pick is required.

@ranjithrd it's unfortunately not possible to "just enable" this. Supporting it is requires a significant amount of work - first it would require that the LSP protocol to support virtual...

In the latest VS Code release, extensions that VS Code believed may not work with virtual workspaces (listed [here](https://github.com/microsoft/vscode/issues/122836) were disabled by default. Extensions now need to opt-in to supporting...

@aeschli I'm definitely interested - it's possible Dart won't be able to support untrusted workspaces (at least in the near-term) so being able to get some basic editing support/coloring with...