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

Side by Side Diff: pkg/serialization/README.md

Issue 414563003: pkg/serialization: updated docs and unittest dependencies (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: use https for homepage Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/serialization/pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Serialization
2 =============
3
4 A general-purpose serialization facility for Dart Objects. 1 A general-purpose serialization facility for Dart Objects.
5 2
6 This provides the ability to save and restore objects to pluggable 3 This provides the ability to save and restore objects to pluggable
7 Formats using pluggable Rules. 4 Formats using pluggable Rules.
8 These rules can use mirrors or be hard-coded. The main principle 5 These rules can use mirrors or be hard-coded. The main principle
9 is using only public APIs on the serialized objects, so changes to the 6 is using only public APIs on the serialized objects, so changes to the
10 internal representation do not break previous serializations. It also handles 7 internal representation do not break previous serializations. It also handles
11 cycles, different representations, filling in known objects on the 8 cycles, different representations, filling in known objects on the
12 receiving side, and other issues. It is not as much intended for 9 receiving side, and other issues. It is not as much intended for
13 APIs using JSON to pass acyclic structures without class information, 10 APIs using JSON to pass acyclic structures without class information,
14 and is fairly heavweight and expensive for doing that compared to simpler 11 and is fairly heavweight and expensive for doing that compared to simpler
15 approaches. 12 approaches.
16
17 For more detailed descriptions and examples of use, see the comment on
18 the [serialization][serialization] library.
19
20 [serialization]: https://api.dartlang.org/docs/channels/stable/latest/serializat ion.html
OLDNEW
« no previous file with comments | « no previous file | pkg/serialization/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698