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'; |