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

Unified Diff: utils/dartdoc/dartdoc.dart

Issue 8912015: Include JSON in generated docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/dartdoc/dartdoc.dart
diff --git a/utils/dartdoc/dartdoc.dart b/utils/dartdoc/dartdoc.dart
index e11db2fe208959e354eb896dd5648f324c4c0926..a77fb1ae3898baa7474a53c521dbb1afb548b8f5 100644
--- a/utils/dartdoc/dartdoc.dart
+++ b/utils/dartdoc/dartdoc.dart
@@ -134,12 +134,14 @@ document(String entrypoint) {
case 'corelib':
world.getOrAddLibrary('dart:core');
world.getOrAddLibrary('dart:coreimpl');
+ world.getOrAddLibrary('dart:json');
world.process();
break;
case 'dom':
world.getOrAddLibrary('dart:core');
world.getOrAddLibrary('dart:coreimpl');
+ world.getOrAddLibrary('dart:json');
world.getOrAddLibrary('dart:dom');
world.process();
break;
@@ -147,6 +149,7 @@ document(String entrypoint) {
case 'html':
world.getOrAddLibrary('dart:core');
world.getOrAddLibrary('dart:coreimpl');
+ world.getOrAddLibrary('dart:json');
world.getOrAddLibrary('dart:dom');
world.getOrAddLibrary('dart:html');
world.process();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698