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

Side by Side Diff: packages/petitparser/lib/json.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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
« no previous file with comments | « packages/petitparser/lib/debug.dart ('k') | packages/petitparser/lib/lisp.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 /// This package contains a complete implementation of [JSON](http://json.org/).
2 ///
3 /// [JsonParser] creates a nested Dart objects from a given JSON string. For
4 /// example the following code prints `{a: 1, b: [2, 3.4], c: false}`:
5 ///
6 /// var json = new JsonParser();
7 /// var result = json.parse('{"a": 1, "b": [2, 3.4], "c": false}');
8 /// print(result.value); // {a: 1, b: [2, 3.4], c: false}
9 ///
10 /// The grammar definition [JsonGrammar] can be subclassed to construct other
11 /// objects.
12 library petitparser.json;
13
14 import 'dart:collection';
15 import 'petitparser.dart';
16
17 part 'src/json/grammar.dart';
18 part 'src/json/parser.dart';
OLDNEW
« no previous file with comments | « packages/petitparser/lib/debug.dart ('k') | packages/petitparser/lib/lisp.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698