mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:44:27 +00:00
No description
da487a567c
- fixed an inadvertant flip in the safepoint check in this cl https://github.com/dart-lang/sdk/commit/e72c1fb47 - return (IsMutatorThread() || - (isolate_ != NULL && !isolate_->thread_registry()->AtSafepoint())); + return (IsMutatorThread() || IsAtSafepoint()); - increase the scope of CanCollectGarbage in Heap::AllocateOld to also account for the tasks lock as checking for tasks inside a safepoint scope can lead to deadlocks - fix an aggressive assertion in compiler for expected errors being only LanguageErrors to allowing UnhandledExceptions (OOM, stack overflows etc.) - fix an aggressive assert in exception handler (handler pc can be 0 even in the mutator thread. - workaround issue 27413 in PageSpace::CanIncreaseCapacityInWords BUG=27380 R=fschneider@google.com Review URL: https://codereview.chromium.org/2363823002 . |
||
---|---|---|
build | ||
client | ||
docs/language | ||
pkg | ||
runtime | ||
samples | ||
samples-dev | ||
sdk | ||
tests | ||
third_party | ||
tools | ||
utils | ||
.gitattributes | ||
.gitignore | ||
.gn | ||
.mailmap | ||
.packages | ||
.travis.yml | ||
AUTHORS | ||
BUILD.gn | ||
CHANGELOG.md | ||
codereview.settings | ||
create_sdk.gyp | ||
dart.gyp | ||
DEPS | ||
LICENSE | ||
PATENTS | ||
PRESUBMIT.py | ||
README.dart-sdk | ||
README.md | ||
WATCHLISTS |
Dart
Dart is an open-source, scalable programming language, with robust libraries and runtimes, for building web, server, and mobile apps.
Using Dart
Visit the dartlang.org to learn more about the language, tools, getting started, and more.
Browse pub.dartlang.org for more packages and libraries contributed by the community and the Dart team.
Building Dart
Learn how to get the source and prepare your machine to build the SDK.
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.
License
See LICENSE.