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

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

Issue 110853011: Pub wishes serialization had a README and a LICENSE (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Helps if I add the LICENSE Created 7 years 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 | « pkg/serialization/LICENSE ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Serialization
2 =============
3
4 A general-purpose serialization facility for Dart Objects.
5
6 This provides the ability to save and restore objects to pluggable
7 Formats using pluggable Rules.
8 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
10 internal representation do not break previous serializations. It also handles
11 cycles, different representations, filling in known objects on the
12 receiving side, and other issues. It is not as much intended for
13 APIs using JSON to pass acyclic structures without class information,
14 and is fairly heavweight and expensive for doing that compared to simpler
15 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 | « pkg/serialization/LICENSE ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698