Skip to content

Commit 6eafa36

Browse files
authored
Reimplement nodoc handling to be less buggy and more useful (#1471)
* Remove old nodoc support and rename isPublic/isPrivate to something more indicative of the limited features of each * Getting there, but still need to work out fields/TopLevelVariables * Integration tests * Add unit tests for nodoc * A few more tests * dartfmt
1 parent d6ab8c2 commit 6eafa36

File tree

94 files changed

+1197
-103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+1197
-103
lines changed

lib/dartdoc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ class DartDoc {
487487
sources.add(source);
488488
if (context.computeKindOf(source) == SourceKind.LIBRARY) {
489489
LibraryElement library = context.computeLibraryElement(source);
490-
if (!isPrivate(library)) libraries.add(library);
490+
if (!hasPrivateName(library)) libraries.add(library);
491491
}
492492
}
493493

0 commit comments

Comments
 (0)