From 4598e15f8bcca250990aaa073b6c41d44c86ffa3 Mon Sep 17 00:00:00 2001 From: Florian Loitsch Date: Mon, 19 Jun 2017 13:40:06 +0200 Subject: [PATCH] Add a changelog entry for the new part-of syntax. R=leafp@google.com Review-Url: https://codereview.chromium.org/2902163002 . --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f512435e371..fa76f9cd19e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ ## 1.25.0 ### Language +* A string in a `part of` declaration may now be used to refer to the library + this file is part of. + A library part can now declare its library either as: + `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. + This allows libraries with no library declarations (and therefore no name) + to have parts, and it allows tools to easily find the library of a part + file. #### Strong Mode