Jacob MacDonald
Jacob MacDonald
Specifically, given this original class: ```dart class A { final int x; A() { print('hello!'); } } ``` And the augmentation: ```dart augment class A { A() : x =...
We realized today that in particular `augmented` expressions are extremely weird for constructors. You do not want to re-run the original initializer list for instance. We could say that you...
Currently the spec doesn't talk at all about default constructors, but it should. My initial thought is that default constructors should only be added immediately following the declarations phase. If...
@munificent @lrhn @eernstg I could use your input on this one :) Mixin classes are the ones of the form `class A = B with C implements D;` (see section...
I am starting to test out macros in build_runner, compiler integrations are known to need work but I am confused by the analyzer stuff in particular here. I did expect...
Wasm now works in stable chrome, so we should add some more official support for users trying to use it.
We have been seeing consistent failures on the `Build Daemon shuts down on build script change` test. This may be an indication of a real failure, not clear as of...
In the `_test` directory, the command `dart run build_runner test -- -p vm test/configurable_uri_test.dart` is failing on github windows CI. The failure looks like this: ``` Failed to load "test/configurable_uri_test.dart":...
With the addition of `PostProcessBuilder`s I did not add the same performance tracking code, but it should be fairly trivial to add.
It is easy today to accidentally override the default target with one that doesn't contain all sources (maybe it contains only the builder sources, or the sources you want to...