[co19] Roll co19 to 34a1386e6e7d3e27f5f2b4461aeb6f8794ab55c7

2020-03-05 sgrekhov@unipro.ru Added tests for covariant late final variables
2020-03-05 irina.arkhipets@gmail.com Fixed Issue 535: assertions updated.
2020-03-05 sgrekhov@unipro.ru Fixes 536. Use correct Requirements value
2020-03-04 sgrekhov@unipro.ru Minor static errors tests changes
2020-03-04 sgrekhov@unipro.ru More static errors tests added
2020-03-03 irina.arkhipets@gmail.com Fixed Issue 534: new tests added.
2020-02-27 irina.arkhipets@gmail.com Fixed Issue 533: toF common function updated according to the Issue 40368 comments.
2020-02-26 irina.arkhipets@gmail.com Fixed Issue 531: type normalization is taken into account.
2020-02-26 sgrekhov@unipro.ru More static errors tests added
2020-02-25 sgrekhov@unipro.ru Fixes 521. Update Process tests to be able to work with NNBD and on all platforms
2020-02-25 sgrekhov@unipro.ru Static errors tests renamed and reordered according to the spec text
2020-02-25 sgrekhov@unipro.ru Fixes 532. FileSystemEvent.isDirectory is always false for delete events
2020-02-24 irina.arkhipets@gmail.com Fixed Issue 530: update overridings tests for generics - assigning to non-nullable variable corrected, nonfunction-type-aliases flag added.
2020-02-21 sgrekhov@unipro.ru More static errors tests added (classes and mixins with no generative constructor)
2020-02-20 sgrekhov@unipro.ru Static errors tests renamed and reordered according to the spec text
2020-02-20 irina.arkhipets@gmail.com Fixed Issue 530: update overridings tests for generics - assigning to non-nullable variable corrected, nonfunction-type-aliases flag added.
2020-02-19 sgrekhov@unipro.ru Negative static errors tests around late keyword fixed. Fixed expected error position and abstract classes added
2020-02-19 irina.arkhipets@gmail.com Fixed Issue 529: test call arguments changed.
2020-02-18 sgrekhov@unipro.ru Update static errors tests around late keyword according changed NNBD specification
2020-02-17 sgrekhov@unipro.ru Fixes 528. Process Never in a special way
2020-02-13 irina.arkhipets@gmail.com Fixed Issue 465: re-factoring: overriding tests mover to separate directory.
2020-02-12 sgrekhov@unipro.ru Fixes 527. Less specific type error detection
2020-02-12 sgrekhov@unipro.ru Fixes 522. Test rewritten
2020-02-12 sgrekhov@unipro.ru Fixes 523. Move tests that use mirrors to API tests.
2020-02-12 sgrekhov@unipro.ru Fixes 523. Move tests that use mirrors to API tests. Add metadata tests without mirrors
2020-02-11 irina.arkhipets@gmail.com Fixed Issue 519: it's possible to call generic function with default type parameter if it's Never.
2020-02-11 irina.arkhipets@gmail.com Fixed Issue 465: overriding tests updated according to the Issue 40454 evaluation.
2020-02-11 sgrekhov@unipro.ru Fixes 527. Make type error detection less specific
2020-02-11 sgrekhov@unipro.ru Fixes 525. Expect error not on 'switch' but on 'case'
2020-02-11 sgrekhov@unipro.ru Fixes 526. Remove tests for the statement deleted from spec
2020-02-11 sgrekhov@unipro.ru Issue numbers added to the tests
2020-02-10 irina.arkhipets@gmail.com Fixed Issue 465: test case table added.
2020-02-10 irina.arkhipets@gmail.com Fixed Issue 465: new tests added.
2020-02-10 irina.arkhipets@gmail.com Fixed Issue 465: new tests added.
2020-02-10 irina.arkhipets@gmail.com Fixed Issue 465: new tests added.
2020-02-10 irina.arkhipets@gmail.com Fixed Issue 465: new tests added.
2020-02-09 irina.arkhipets@gmail.com Fixed Issue 465: new tests added.
2020-02-09 irina.arkhipets@gmail.com Fixed Issue 465: new tests added.
2020-02-07 irina.arkhipets@gmail.com Fixed Issue 465: check for status warning added.
2020-02-07 irina.arkhipets@gmail.com Fixed Issue 465: test corrected, @Issue tag for the SDK bug 40514 added.
2020-02-07 irina.arkhipets@gmail.com Fixed Issue 465: type corrected.

New failures will be triaged on:
https://github.com/dart-lang/co19/issues/537

Change-Id: Iaf03662b8595927c0bb8589804d0a0e30cd600cb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/138289
Reviewed-by: Karl Klose <karlklose@google.com>
1 file changed
tree: cce6c61735a15c66d8a78004af840de96e267aee
  1. .dart_tool/
  2. .github/
  3. benchmarks/
  4. build/
  5. client/
  6. docs/
  7. pkg/
  8. runtime/
  9. samples/
  10. samples-dev/
  11. sdk/
  12. sdk_nnbd/
  13. tests/
  14. third_party/
  15. tools/
  16. utils/
  17. .clang-format
  18. .gitattributes
  19. .gitconfig
  20. .gitignore
  21. .gn
  22. .mailmap
  23. .packages
  24. .style.yapf
  25. .vpython
  26. AUTHORS
  27. BUILD.gn
  28. CHANGELOG.md
  29. codereview.settings
  30. CONTRIBUTING.md
  31. DEPS
  32. LICENSE
  33. PATENT_GRANT
  34. PRESUBMIT.py
  35. README.dart-sdk
  36. README.md
  37. sdk_args.gni
  38. WATCHLISTS
README.md

Dart

A client-optimized language for fast apps on any platform

Dart is:

  • Optimized for UI: Develop with a programming language specialized around the needs of user interface creation

  • Productive: Make changes iteratively: use hot reload to see the result instantly in your running app

  • Fast on all platforms: Compile to ARM & x64 machine code for mobile, desktop, and backend. Or compile to JavaScript for the web

Dart's flexible compiler technology lets you run Dart code in different ways, depending on your target platform and goals:

  • Dart Native: For programs targeting devices (mobile, desktop, server, and more), Dart Native includes both a Dart VM with JIT (just-in-time) compilation and an AOT (ahead-of-time) compiler for producing machine code.

  • Dart Web: For programs targeting the web, Dart Web includes both a development time compiler (dartdevc) and a production time compiler (dart2js).

Dart platforms illustration

License & patents

Dart is free and open source.

See LICENSE and PATENT_GRANT.

Using Dart

Visit the dart.dev to learn more about the language, tools, getting started, and more.

Browse pub.dev for more packages and libraries contributed by the community and the Dart team.

Building Dart

If you want to build Dart yourself, here is a guide to getting the source, preparing your machine to build the SDK, and building.

There are more documents on our wiki.

Contributing to Dart

The easiest way to contribute to Dart is to file issues.

You can also contribute patches, as described in Contributing.