Jacob MacDonald

Results 160 issues of 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 =...

augmentation-libraries

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...

augmentation-libraries

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...

static-metaprogramming

@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...

augmentation-libraries

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.

type-enhancement

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...

type-bug
type-cleanup

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.

type-enhancement
P2
type-performance

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...

type-documentation