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

Unified Diff: pkg/docgen/lib/docgen.dart

Issue 63303002: Stopgap generating docgen all at once until --append mode can be fixed (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | « pkg/docgen/bin/docgen.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/lib/docgen.dart
diff --git a/pkg/docgen/lib/docgen.dart b/pkg/docgen/lib/docgen.dart
index 239d08a76056b204a6280ae97ef76727ac68e39f..5748d25ad507e13c8526647da4609881aa047f63 100644
--- a/pkg/docgen/lib/docgen.dart
+++ b/pkg/docgen/lib/docgen.dart
@@ -305,7 +305,7 @@ void _documentLibraries(List<LibraryMirror> libs, {bool includeSdk: false,
entityMap.values.where((e) => e is Class).forEach((c) => c.makeValid());
// Everything is a subclass of Object, therefore empty the list to avoid a
// giant list of subclasses to be printed out.
- if (parseSdk) (entityMap['dart-core.Object'] as Class).subclasses.clear();
+ if (includeSdk) (entityMap['dart-core.Object'] as Class).subclasses.clear();
Emily Fortuna 2013/11/06 22:29:26 if (parseSdk || includeSdk) ?
Alan Knight 2013/11/06 23:16:30 includeSdk the parameter to this method is passed
var filteredEntities = entityMap.values.where(_isVisible);
« no previous file with comments | « pkg/docgen/bin/docgen.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698