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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « petitparser/lib/debug.dart ('k') | petitparser/lib/lisp.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: petitparser/lib/json.dart
diff --git a/petitparser/lib/json.dart b/petitparser/lib/json.dart
deleted file mode 100644
index a6ffb17d50c3e4e7b542b2b513c3027092abd370..0000000000000000000000000000000000000000
--- a/petitparser/lib/json.dart
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * This package contains a complete implementation of [JSON](http://json.org/).
- *
- * [JsonParser] creates a nested Dart objects from a given JSON string. For
- * example the following code prints `{a: 1, b: [2, 3.4], c: false}`:
- *
- * var json = new JsonParser();
- * var result = json.parse('{"a": 1, "b": [2, 3.4], "c": false}');
- * print(result.value); // {a: 1, b: [2, 3.4], c: false}
- *
- * The grammar definition [JsonGrammar] can be subclassed to construct other
- * objects.
- */
-library json;
-
-import 'dart:collection';
-import 'package:petitparser/petitparser.dart';
-
-part 'src/json/grammar.dart';
-part 'src/json/parser.dart';
« 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