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

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

Issue 584473004: Revert "remove serialization. it's moved to github" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « pkg/serialization/LICENSE ('k') | pkg/serialization/lib/serialization.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 A general-purpose serialization facility for Dart Objects.
2
3 This provides the ability to save and restore objects to pluggable
4 Formats using pluggable Rules.
5 These rules can use mirrors or be hard-coded. The main principle
6 is using only public APIs on the serialized objects, so changes to the
7 internal representation do not break previous serializations. It also handles
8 cycles, different representations, filling in known objects on the
9 receiving side, and other issues. It is not as much intended for
10 APIs using JSON to pass acyclic structures without class information,
11 and is fairly heavweight and expensive for doing that compared to simpler
12 approaches.
OLDNEW
« no previous file with comments | « pkg/serialization/LICENSE ('k') | pkg/serialization/lib/serialization.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698