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

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

Powered by Google App Engine
This is Rietveld 408576698