Jacob MacDonald
Jacob MacDonald
Will start with JSON just to get things up and running, but proto etc should be evaluated.
Today it looks like we just rely on the user to keep these in sync, we should actually merge the two files and only allow you to overwrite the `options`...
This has broken multiple times, so we need to set up a web driver test or something along those lines to check the actual browser console output. ~~We should also...
With the "class modifiers" feature coming, we need to migrate all of the `abstract class` declarations that are used as mixins to be either `mixin` declarations, or possibly `mixin class`...
See https://github.com/dart-lang/code_builder/blob/master/lib/src/matchers.dart#L5. This causes problems internally because it prevents `matcher` from being a testonly target, which it should be. It also means matcher is a transitive dep of anything that...
This may not be worth fixing, but [in the API docs](https://api.dart.dev/stable/3.3.0/dart-async/FutureOr-class.html) `FutureOr` is listed as being a "class", even though it isn't actually one. It is weird though because in...
The jobs for a package should only run if: - Some file in the package directory changes - There is a dependency_override which is a path to somewhere in the...
Mostly a placeholder issue for now, we need to spec this feature out. The general idea is to allow macros inside of constructor bodies. These macros would be able to...
It would be good to have `isFactory`, `isConst`, and then in the case of redirecting factory constructors it would be good if we could get the name. The last bit...