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 .
This commit is contained in:
Lasse R.H. Nielsen 2017-03-30 11:55:25 +02:00
parent 25c6c8811a
commit ae22eed515

View file

@ -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