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

Unified Diff: CHANGELOG.md

Issue 2343863004: ignore `dynamic` when doing inference (Closed)
Patch Set: add changelog note Created 4 years, 3 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/analyzer/lib/src/generated/type_system.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 bf984aba0ce71eb7d92ac7e0d198c70d97c489f1..cef042e7bcab91d504d4cd28f32a78fa728c1b97 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -107,6 +107,15 @@
class C extends A {}
```
+* Breaking change - ingore `dynamic` when doing inference.
+
+ ```dart
+ main() {
+ dynamic d = 42;
+ List<int> list = /*infer <int>*/[123, /*implicit cast*/d];
+ }
+ ```
+
## 1.19.0
### Language changes
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/generated/type_system.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698