Bump test to 075faffb08873fbc6d105f08408c426b6ab54b09

Changes:
```
> git log --format="%C(auto) %h %s" 4341470..075faff
 https://dart.googlesource.com/test.git/+/075faffb Bump github/codeql-action from 2.21.9 to 2.22.5 (2135)
 https://dart.googlesource.com/test.git/+/a3f694bf Bump dart-lang/setup-dart from 1.5.1 to 1.6.0 (2132)
 https://dart.googlesource.com/test.git/+/518d2a3f Bump ossf/scorecard-action from 2.2.0 to 2.3.1 (2134)
 https://dart.googlesource.com/test.git/+/b5a34b85 Bump actions/checkout from 4.1.0 to 4.1.1 (2133)
 https://dart.googlesource.com/test.git/+/78ce945b release to support the latest vm_service (2131)
 https://dart.googlesource.com/test.git/+/472874a3 Update package:vm_service to >=6.0.0 <14.0.0 (2130)
 https://dart.googlesource.com/test.git/+/def41cc7 Tweak dart2js source map rewriting (2128)
 https://dart.googlesource.com/test.git/+/f196d18c Bump dart_flutter_team_lints from 1.0.0 to 2.1.1 in /pkgs/test_core (2125)
 https://dart.googlesource.com/test.git/+/9db7e039 Bump dart_flutter_team_lints from 1.0.0 to 2.1.1 in /pkgs/test (2124)
 https://dart.googlesource.com/test.git/+/54207458 Prepare for the latest dart_flutter_team_lints (2127)
 https://dart.googlesource.com/test.git/+/6ac4ff97 Move more js_util usage to the dom library (2121)
 https://dart.googlesource.com/test.git/+/ba050ae2 Move functions to non-deprecated library (2120)
 https://dart.googlesource.com/test.git/+/96e1ed2d Remove unused href field from error report (2118)
 https://dart.googlesource.com/test.git/+/ae7f30e9 Make compiler optional in calls to currentPlatform (2117)

```

Diff: https://dart.googlesource.com/test.git/+/4341470a2b844cd9a6692647639d652f617dd302..075faffb08873fbc6d105f08408c426b6ab54b09/
Tested: Package roll
Change-Id: I81a75c6de95e1c8b5d2306749927ec58a7418ad3
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/334300
Auto-Submit: Nate Bosch <nbosch@google.com>
Commit-Queue: Nate Bosch <nbosch@google.com>
Reviewed-by: Jake Macdonald <jakemac@google.com>
4 files changed
tree: 7c5611894f1de3a6b635d13d2670b4cb3d1a5a12
  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. .vpython
  22. AUTHORS
  23. BUILD.gn
  24. CHANGELOG.md
  25. codereview.settings
  26. CONTRIBUTING.md
  27. DEPS
  28. LICENSE
  29. OWNERS
  30. PATENT_GRANT
  31. PRESUBMIT.py
  32. README.dart-sdk
  33. README.md
  34. sdk.code-workspace
  35. sdk_args.gni
  36. SECURITY.md
  37. 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 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 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.