co19
co19 copied to clipboard
A Dart language and library conformance test suite
The [wildcards feature specification](https://github.com/dart-lang/language/blob/main/working/wildcards/feature-specification.md) is being implemented, so we need tests.
See examples in https://github.com/dart-lang/sdk/issues/55468
[Discussion](https://github.com/dart-lang/language/issues/1482) [Specification](https://github.com/dart-lang/language/blob/main/working/macros/feature-specification.md)
Spec https://github.com/dart-lang/language/blob/main/working/augmentation-libraries/feature-specification.md
Add test for part with multiple owners. Like ```dart // multiple_owners_part.dart part of multiple_owners_lib; final definedInPart = "Lily was here"; // multiple_owners_owner_t01.dart library multiple_owners_lib; part 'multiple_owners_part.dart'; var definedInPart = "";...
Specification https://github.com/dart-lang/language/issues/524
Consider the following line from a test. https://github.com/dart-lang/co19/blob/ed5f316d50e29234a51b71a7feff754969662dff/LanguageFeatures/Constructor-tear-offs/summary_A03_t01.dart#L90 In it `Func` is a type literal referring to the declaration as follows: https://github.com/dart-lang/co19/blob/ed5f316d50e29234a51b71a7feff754969662dff/LanguageFeatures/Constructor-tear-offs/summary_A03_t01.dart#L76 According to a comment in a recent discussion...
Add appropriate co19 tests after resolving https://github.com/dart-lang/language/issues/3427
Add tests based on examples from https://github.com/dart-lang/sdk/issues/54551