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

Unified Diff: utils/apidoc/apidoc.dart

Issue 10383129: remove dart dom from docs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « no previous file | utils/apidoc/apidoc.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/apidoc.dart
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
index 80dd38334c2923ba7caed8c20ca1e884a8419800..664c4fffdf4bd7350306f21149009606e0be4f08 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -101,7 +101,7 @@ void main() {
final mdnFile = new File('${doc.scriptDir}/mdn/database.json');
final mdn = JSON.parse(mdnFile.readAsTextSync());
- print('Cross-referencing dart:dom and dart:html...');
+ print('Cross-referencing dart:html...');
HtmlDiff.initialize();
_diff = new HtmlDiff(printWarnings:false);
_diff.run();
@@ -111,7 +111,6 @@ void main() {
world.getOrAddLibrary('dart:core');
world.getOrAddLibrary('dart:coreimpl');
world.getOrAddLibrary('dart:json');
- world.getOrAddLibrary('dart:dom');
world.getOrAddLibrary('dart:html');
world.getOrAddLibrary('dart:io');
world.getOrAddLibrary('dart:isolate');
@@ -256,7 +255,7 @@ class Apidoc extends doc.Dartdoc {
return _mergeDocs(
includeMdnTypeComment(type),
super.getTypeComment(type),
- getTypeDoc(type));
+ /* getTypeDoc(type) */ null);
}
String getMethodComment(MethodMember method) {
« no previous file with comments | « no previous file | utils/apidoc/apidoc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698