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

Unified Diff: utils/apidoc/apidoc.dart

Issue 10894005: Remove library_map.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to tip of tree. Created 8 years, 4 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 | « pkg/dartdoc/dartdoc.dart ('k') | no next file » | 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 1afc8b056099b05f30de2cb00a82422ec326e3bc..0b9e786373e71d4cb5e8e6ff664ff5940a4783d7 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -95,9 +95,7 @@ void main() {
// Add all of the core libraries.
final apidocLibraries = <Path>[];
LIBRARIES.forEach((String name, LibraryInfo info) {
- if (info.isDart2JsLibrary() &&
- info.category != "Internal" &&
- info.documented) {
+ if (info.documented) {
apidocLibraries.add(new Path('dart:$name'));
}
});
« no previous file with comments | « pkg/dartdoc/dartdoc.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698