Gary Roumanis
Gary Roumanis
The web version of the book has support for deep links through a `#` URL scheme, e.g. https://craftinginterpreters.com/scanning.html#the-interpreter-framework. However, the web page does not update the URL as you scroll...
DevTools provides a server implementation which is intended to be used as a CLI package. It would be useful if it could also be used programmatically so `package:dwds` doesn't have...
There is usage of the term `blackListPattern` in `package:build_daemon`. Unfortunately changing the field will be breaking. It likely makes sense to couple this work with NNBD to reduce churn.
We migrated the bootstrap logic to `package:dwds` in a non-breaking fashion. The next breaking change should remove all of the unused cruft in: https://github.com/dart-lang/build/blob/master/build_web_compilers/lib/src/dev_compiler_bootstrap.dart See https://github.com/dart-lang/webdev/pull/898 for details
Right now `ArgParser` displays the options in the order that they were added. In some scenarios, a non-trivial amount of options are shared which makes it infeasible to add the...
When you hover over a variable in the source view of the debugger a hover card will be shown. If you move your mouse into this card then the card...
See https://dart.dev/null-safety for motivation and tooling support.
Just playing around with running Linux apps on ChromeOS. Everything builds as expected but when I try to serve an example app nothing responds to the HTTP requests. I verified...
Currently, collecting coverage will collect coverage information for all sources used by the VM. There are scenarios where a user would only like to have coverage information for a subset...