commit | a94b8ae45d1d9df58a2b4ea2481ad6eec9b28f0a | [log] [tgz] |
---|---|---|
author | Martin Kustermann <kustermann@google.com> | Mon May 04 14:51:14 2020 +0000 |
committer | commit-bot@chromium.org <commit-bot@chromium.org> | Mon May 04 14:51:14 2020 +0000 |
tree | ad74240f9890d1f697ade4ebad1e24bc7b57883b | |
parent | 1ada0442d802d40695446ae050a00dcd425b73a2 [diff] |
Reland "[vm] Make VM support .dart_tool/package_config.json" This relands the following CLs [vm] Make VM support .dart_tool/package_config.json https://dart-review.googlesource.com/c/sdk/+/145462 [vm] Make Isolate.resolveUri() work for both `.packages` and `dart_tool/package_config.json` https://dart-review.googlesource.com/c/sdk/+/145803 [vm] Skip (newly enabled) isolate tests on simarm* and hot-reload configs https://dart-review.googlesource.com/c/sdk/+/145861 [vm] Remove ../0 postfix from status file entries (test framework does not recognize those multitests) https://dart-review.googlesource.com/c/sdk/+/145940 [vm] - Fix hang when no package config or .packages exist https://dart-review.googlesource.com/c/sdk/+/145661 The only change (extra patchset) is to let VM prefer the old/legacy ".packages" format and only use the newer ".dart_tool/package_config.json" if we failed to find a ".packages". Closes https://github.com/dart-lang/sdk/issues/41739 Closes https://github.com/dart-lang/sdk/issues/41649 Change-Id: I220f808540e6e521d985ae763968f64dbf57fe67 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/145942 Reviewed-by: Vyacheslav Egorov <vegorov@google.com> Commit-Queue: Martin Kustermann <kustermann@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.