johnniwinther
johnniwinther
When generating macros in three phases, the situation can occur where the second phase adds unimplemented members that are implementated in phase 3. For instance we might have ```Dart @AddMemberMacro()...
The scope for class-like augmentations in the proposal for augmentations is inconsistent with the library scope for enhanced parts. For enhanced parts, all files, parts or library, within the same...
Consider this program consisting of two libraries: ```Dart // private.dart import 'private_lib.dart'; mixin M {} class B = A with M; // private_lib.dart import 'private.dart'; class A { A._(); }...