Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: CHANGELOG.md

Issue 2996573002: fix #28988, remove throw on Dart1 incompatible is-checks for dartdevc (Closed)
Patch Set: fix changelog Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/dev_compiler/lib/sdk/ddc_sdk.sum » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4070ffc8f2ef31842a8ba135190a08f281889fc5..22cfdafe44951b126d4257034e4821751f32acf0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -73,6 +73,21 @@
* Support assert in const constructor initializer lists.
* Better formatting for multi-line strings in argument lists.
+ wasn't in a Git repository.
+
+* Dart Dev Compiler
+
+ * dartdevc will no longer throw an error from `is` checks that return a
+ different result in weak mode
+ (SDK issue [28988](https://github.com/dart-lang/sdk/issues/28988)).
+ For example:
+ ```dart
+ main() {
+ List l = [];
+ // Prints "false", does not throw.
+ print(l is List<String>);
+ }
+ ```
## 1.24.2 - 22-06-2017
« no previous file with comments | « no previous file | pkg/dev_compiler/lib/sdk/ddc_sdk.sum » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698