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

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

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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