1
0
mirror of https://github.com/dart-lang/sdk synced 2024-07-05 09:20:04 +00:00

Add a changelog entry for the new part-of syntax.

R=leafp@google.com

Review-Url: https://codereview.chromium.org/2902163002 .
This commit is contained in:
Florian Loitsch 2017-06-19 13:40:06 +02:00
parent 2b6fbc7069
commit 4598e15f8b

View File

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