commit | 8b2576fe66999ba8874ecabd52d22d13c25fc68b | [log] [tgz] |
---|---|---|
author | Paul Berry <paulberry@google.com> | Fri Aug 07 00:18:09 2020 +0000 |
committer | commit-bot@chromium.org <commit-bot@chromium.org> | Fri Aug 07 00:18:09 2020 +0000 |
tree | 0e8de9f7c8ab03b873fd9ddd8c8369b125eeacbe | |
parent | a528b19d2c62eff86dc262409f9f873c78e23305 [diff] |
Abstract field support: detect when a concrete implementation is missing. This CL covers two cases: when an abstract field appears in a concrete class (which we report as CONCRETE_CLASS_WITH_ABSTRACT_MEMBER, just as we do for abstract methods), and when a concrete class implements a class with an abstract field, but fails to supply the necessary concrete implementation(s) (which we report as NON_ABSTRACT_CLASS_INHERITS_ABSTRACT_MEMBER_*, just as we do for abstract methods). Change-Id: I94bdbafc4ed7b058d9b33b3774e79cb55393380b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/157600 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
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 is free and open source.
See LICENSE and PATENT_GRANT.
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.
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.
The easiest way to contribute to Dart is to file issues.
You can also contribute patches, as described in Contributing.