Index: utils/apidoc/apidoc.dart |
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart |
index cfeaa2f2af3e45745722d64edc6c6456699edfa7..e92191f7c40abcaf6265c229da848913c8cdd8c5 100644 |
--- a/utils/apidoc/apidoc.dart |
+++ b/utils/apidoc/apidoc.dart |
@@ -105,9 +105,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')); |
} |
}); |