| commit | 81df36216feda133754e88458fd640d8edc038ef | [log] [tgz] |
|---|---|---|
| author | Martin Kustermann <kustermann@google.com> | Tue Jul 11 08:54:33 2023 +0000 |
| committer | Commit Queue <dart-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Jul 11 08:54:33 2023 +0000 |
| tree | 51124dc2e48ca200df09a4dc497b8263e38ee0c3 | |
| parent | e1c12b3ab2ede3a116764b4e16ff2cdd3f05f75f [diff] |
Make utf8.encode() have Uint8List return type Right now `utf8.encode()` has a static return type of `List<int>` due to extending `Encoding` (which extends `Codec<String, List<int>>`). We cannot easily change `Encoding` to extend `Codec<String, Uint8List>` because that would also change `utf8.decode()` to require `Uint8List` which would be a breaking change. So instead we override `utf8.encode()` to have more precise return type. Some parts of our SDK are run using the checked-in SDK, so it cannot rely on the changed return type yet (until checked-in SDK is rolled). So we use `const Utf8Encoder().convert()` as a temporary change, as that already has `Uint8List` return type. Issue https://github.com/dart-lang/sdk/issues/52801 TEST=ci CoreLibraryReviewExempt: More precise return type for existing API Change-Id: I2861d1f0eb3d292d8e3ec8437c0d441a2d2bd193 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/254903 Commit-Queue: Martin Kustermann <kustermann@google.com> Reviewed-by: Lasse Nielsen <lrn@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 dart.dev to learn more about the language, tools, and to find codelabs.
Browse pub.dev for more packages and libraries contributed by the community and the Dart team.
Our API reference documentation is published at api.dart.dev, based on the stable release. (We also publish docs from our beta and dev channels, as well as from the primary development branch).
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.