dart-lang / sdk

The Dart SDK, including the VM, dart2js, core libraries, and more.
https://dart.dev
BSD 3-Clause "New" or "Revised" License
9.93k stars 1.53k forks source link

[Null-aware elements] Language Tests in tests/language #55927

Open chloestefantsova opened 3 weeks ago

chloestefantsova commented 3 weeks ago

Write up language tests for the tests/language repository.

The example is pulled from the spec.

void printThree(String? a, String? b, String? c) {
  print([?a, ?b, ?c].join(' '));
}

main() {
  printThree('first', null, 'last');
}
chloestefantsova commented 3 weeks ago

The current direction is to convert the emergent unit tests into language tests and to get @lrhn's help to generate particularly tricky examples.