Danny Tuppeny
Danny Tuppeny
There's some functionality in Dart-Code that tries to handle this, but it's a rather clunky and I think could be better dealt with here. (I'm not certain it's a common...
If I run: ```dart main() { throw 'test'; } ``` I get the output: ``` Unhandled exception: test #0 main (file:///Users/danny/Desktop/dart_sample/bin/trace.dart:2:3) #1 _delayEntrypointInvocation. (dart:isolate-patch/isolate_patch.dart:297:19) #2 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:192:12) ``` If I...
I don't know if I can add anything that isn't already described in the README or #6 but since this repo is soliciting feedback I thought I'd dump my thoughts...
Sorry if this is a noob question, and I appreciate this isn't ready for production, but I can't get things working with `dart2js` so figured I'd have a go with...
The next version of Dart Code will support attaching to an existing VM process (by pasting in an Observatory Uri). It doesn't support all the Flutter functionality (since we don't...
I was moving some tests in Flutter over to the memory file system and hit some issues because of differences in behaviour. In the real implementation, if you use a...
[WIP - just an idea, related to https://github.com/sourcegraph/cody/pull/3033) VS Code's findFiles() walks symlinks which can result in very slow locating of workspace ignore files (see https://github.com/sourcegraph/cody/pull/3033). This reuses the agent/shim...
Given a simple Dart web app created with `dart create -t web` and the code updated to: ```dart import 'dart:html'; Future main() async { // TODO: Remove this delay when...
Given a simple Dart web app created with `dart create -t web` and the code updated to: ```dart import 'dart:html'; Future main() async { // TODO: Remove this delay when...
Without this there are races setting breakpoints in the IDE for startup code. In Flutter this is done by not calling `runMain` until we send the first resume.