Find a file
Alexander Markov 3fa0a2f255 Reland "[vm] Cleanup unused code in ClosureFunctionsCache"
This is a reland of commit 4c1235caab

The underlying problem is addressed in https://dart-review.googlesource.com/c/sdk/+/262429.

Original change's description:
> [vm] Cleanup unused code in ClosureFunctionsCache
>
> TEST=ci
>
> Change-Id: Ia6f24545c7e2d5b0df81cab52585d17556b36c16
> Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/256363
> Commit-Queue: Ryan Macnak <rmacnak@google.com>
> Reviewed-by: Ryan Macnak <rmacnak@google.com>
> Auto-Submit: Alexander Markov <alexmarkov@google.com>

TEST=ci
Change-Id: I96bd99174e68818ca8024e72836ebd1c99cdecd5
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/263141
Reviewed-by: Tess Strickland <sstrickl@google.com>
Reviewed-by: Ryan Macnak <rmacnak@google.com>
Commit-Queue: Alexander Markov <alexmarkov@google.com>
2022-10-14 14:09:44 +00:00
.dart_tool
.github Bump actions/checkout from 3.0.2 to 3.1.0 2022-10-11 02:36:13 +00:00
benchmarks Reland "[vm/ffi] Throw on returning Error in Handle" 2022-10-03 12:25:08 +00:00
build [build] Re-add linker flags to create empty section in AOT runtime. 2022-10-07 09:26:18 +00:00
docs
pkg Parser: add support for wildcard patterns. 2022-10-14 14:04:59 +00:00
runtime Reland "[vm] Cleanup unused code in ClosureFunctionsCache" 2022-10-14 14:09:44 +00:00
samples [tests] Avoid small --optimization-counter-threshold in tests 2022-10-10 21:04:18 +00:00
sdk [vm] Extend string optimizations to UnmodifiableUint8List. 2022-10-13 23:10:47 +00:00
tests [analyzer] NOT_ENOUGH_POSITIONAL_ARGUMENTS 2022-10-11 17:56:11 +00:00
third_party
tools [infra] Increase sharding for vm-kernel-precomp-nnbd-linux-debug-simriscv64. 2022-10-13 17:47:33 +00:00
utils
.clang-format
.gitattributes
.gitconfig
.gitignore
.gn
.mailmap
.style.yapf
.vpython
AUTHORS
BUILD.gn [build] Fix product SDK build. 2022-10-10 19:14:58 +00:00
CHANGELOG.md Bump pub to 28a2503d7f4806e6854e3ed0d783f065abfd1b5f 2022-10-04 10:11:57 +00:00
codereview.settings
CONTRIBUTING.md
DEPS [deps] rev convert, stack_trace, and webdriver 2022-10-13 19:08:27 +00:00
LICENSE
OWNERS
PATENT_GRANT
PRESUBMIT.py
README.dart-sdk
README.md
sdk_args.gni
SECURITY.md
WATCHLISTS

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.