Bump pub to 30bfc439fedba1ee3daadcf542f1483479bc4909

Changes:
```
> git log --format="%C(auto) %h %s" 8c2e621..30bfc43
 https://dart.googlesource.com/pub.git/+/30bfc439 Delete directories between workspace package and workspace root (4446)
 https://dart.googlesource.com/pub.git/+/3246cfe5 Bump dart-lang/setup-dart in the github-actions group (4449)
 https://dart.googlesource.com/pub.git/+/674127c8 Bump args from 2.5.0 to 2.6.0 (4441)
 https://dart.googlesource.com/pub.git/+/2ce2f753 Bump path from 1.9.0 to 1.9.1 (4443)
 https://dart.googlesource.com/pub.git/+/cbe1c515 Bump http_parser from 4.1.0 to 4.1.1 (4442)
 https://dart.googlesource.com/pub.git/+/6add1063 Bump crypto from 3.0.5 to 3.0.6 (4440)
 https://dart.googlesource.com/pub.git/+/905ac160 Bump typed_data from 1.3.2 to 1.4.0 (4439)
 https://dart.googlesource.com/pub.git/+/85aeff4c Better help message for --enforce-lock-file (4421)
 https://dart.googlesource.com/pub.git/+/8b349a8a fix: symlinks handling (3298)
 https://dart.googlesource.com/pub.git/+/cc5e9dab Merge pull request 4423 from sigurdm/merge_cherry_pick
 https://dart.googlesource.com/pub.git/+/1dc7700a Output validation errors on stdout, slightly prettier formatted (4424)
 https://dart.googlesource.com/pub.git/+/7f6b849c Merge remote-tracking branch 'origin/cherry_pick_better_global_error_message' into merge_cherry_pick
 https://dart.googlesource.com/pub.git/+/ab8b269c Special case global-run message for updated sdk (4419)

```

Diff: https://dart.googlesource.com/pub.git/+/8c2e621c2403cb503cc9959be387d1061a16846a..30bfc439fedba1ee3daadcf542f1483479bc4909/
Change-Id: I5ee078f69de2b9e67a44a55d9ce994554568b6b6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/398400
Reviewed-by: Jonas Jensen <jonasfj@google.com>
Commit-Queue: Sigurd Meldgaard <sigurdm@google.com>
Reviewed-by: Sarah Zakarias <zarah@google.com>
1 file changed
tree: 608250004117bd1fd4af616d8f72f5f6dcd70e36
  1. .dart_tool/
  2. .github/
  3. benchmarks/
  4. build/
  5. docs/
  6. pkg/
  7. runtime/
  8. samples/
  9. sdk/
  10. tests/
  11. third_party/
  12. tools/
  13. utils/
  14. .clang-format
  15. .gitattributes
  16. .gitconfig
  17. .gitignore
  18. .gn
  19. .mailmap
  20. .style.yapf
  21. AUTHORS
  22. BUILD.gn
  23. CHANGELOG.md
  24. codereview.settings
  25. CONTRIBUTING.md
  26. DEPS
  27. LICENSE
  28. OWNERS
  29. PATENT_GRANT
  30. PRESUBMIT.py
  31. README.dart-sdk
  32. README.md
  33. sdk.code-workspace
  34. sdk_args.gni
  35. sdk_packages.yaml
  36. SECURITY.md
  37. WATCHLISTS
README.md

Dart

An approachable, portable, and productive language for high-quality apps on any platform

Dart is:

  • Approachable: Develop with a strongly typed programming language that is consistent, concise, and offers modern language features like null safety and patterns.

  • Portable: Compile to ARM, x64, or RISC-V machine code for mobile, desktop, and backend. Compile to JavaScript or WebAssembly for the web.

  • Productive: Make changes iteratively: use hot reload to see the result instantly in your running app. Diagnose app issues using DevTools.

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 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).

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 in our repo at docs.

Contributing to Dart

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

You can also contribute patches, as described in Contributing.

Roadmap

Future plans for Dart are included in the combined Dart and Flutter roadmap on the Flutter wiki.