From ae22eed515a7855ee3bba3c031faab8332a5c0f4 Mon Sep 17 00:00:00 2001 From: "Lasse R.H. Nielsen" Date: Thu, 30 Mar 2017 11:55:25 +0200 Subject: [PATCH] Improve changelog entry for URIs in part-of declarations. Fixes #29185. BUG= http://dartbug.com/29185 R=kevmoo@google.com Review-Url: https://codereview.chromium.org/2782183002 . --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d11c01243c..c33f6c70c88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ ### Language * Allow using URI strings in `part of` declarations to refer to the importing library. + A library part now can 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. ### Core library changes