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

Unified Diff: CHANGELOG.md

Issue 2477093002: fix #27766, allow implicit casts from dynamic to composite types (Closed)
Patch Set: add changelog Created 4 years, 1 month 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/analyzer/lib/src/task/strong/checker.dart » ('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 a9e4b6f04a354fbc2adfa7f8fa731bf6e7ecba7f..2f5b2389d15aa51bb524653b02f4e15b6b31edf6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,6 +21,19 @@ Patch release, resolves one issue:
* Dartium: Fixes a bug that caused crashes. No issue filed
+### Strong Mode
+
+* It is no longer a warning when casting from dynamic to a composite type
+ (SDK issue [27766](https://github.com/dart-lang/sdk/issues/27766)).
+
+ ```dart
+ main() {
+ dynamic obj = <int>[1, 2, 3];
+ // This is now allowed without a warning.
+ List<int> list = obj;
+ }
+ ```
+
## 1.20.0 - 2016-10-11
### Dart VM
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/strong/checker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698