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')); |
} |
}); |