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

Unified 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, 5 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 | « packages/petitparser/lib/debug.dart ('k') | packages/petitparser/lib/lisp.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/petitparser/lib/json.dart
diff --git a/packages/petitparser/lib/json.dart b/packages/petitparser/lib/json.dart
deleted file mode 100644
index 94fa212ba614efe0e6584cec8d0edfcfee50af7b..0000000000000000000000000000000000000000
--- a/packages/petitparser/lib/json.dart
+++ /dev/null
@@ -1,18 +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 petitparser.json;
-
-import 'dart:collection';
-import 'petitparser.dart';
-
-part 'src/json/grammar.dart';
-part 'src/json/parser.dart';
« 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