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

Unified Diff: utils/apidoc/mdn/util.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « utils/apidoc/mdn/prettyPrint.dart ('k') | utils/archive/entry.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/mdn/util.dart
diff --git a/utils/apidoc/mdn/util.dart b/utils/apidoc/mdn/util.dart
index 69a4c6ca2d0729ca5b0c82a8bf3a9f6976f62629..b3389887a4d8c56d65340918569364f0121db36f 100644
--- a/utils/apidoc/mdn/util.dart
+++ b/utils/apidoc/mdn/util.dart
@@ -1,14 +1,14 @@
library util;
import 'dart:io';
-import 'dart:json';
+import 'dart:json' as json;
Map<String, Map> _allProps;
Map<String, Map> get allProps {
if (_allProps == null) {
// Database of expected property names for each type in WebKit.
- _allProps = JSON.parse(
+ _allProps = parse.parse(
new File('data/dartIdl.json').readAsStringSync());
}
return _allProps;
« no previous file with comments | « utils/apidoc/mdn/prettyPrint.dart ('k') | utils/archive/entry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698