Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the deprecated nodoc option. #4025

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 9.0.0-dev

* Remove the deprecated `nodoc` option.

## 8.3.3

* Require Dart 3.6 or later.
Expand Down
2 changes: 1 addition & 1 deletion dartdoc_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dartdoc:
linkToSource:
root: '.'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v8.3.3/%f%#L%l%'
uriTemplate: 'https://github.com/dart-lang/dartdoc/blob/v9.0.0-dev/%f%#L%l%'
9 changes: 0 additions & 9 deletions lib/src/dartdoc_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1207,8 +1207,6 @@ class DartdocOptionContext extends DartdocOptionContextBase
// ignore: unused_element
String get _linkToHosted => optionSet['linkTo']['hosted'].valueAt(context);

List<String> get nodoc => optionSet['nodoc'].valueAt(context);

String get output => optionSet['output'].valueAt(context);

PackageMeta get packageMeta => optionSet['packageMeta'].valueAt(context);
Expand Down Expand Up @@ -1504,13 +1502,6 @@ List<DartdocOption> createDartdocOptions(
help: 'Allow links to be generated for packages outside this one.',
negatable: true),
]),
// Deprecated. Use of this option is reported.
// TODO(srawlins): Remove.
DartdocOptionFileOnly<List<String>>('nodoc', [], resourceProvider,
optionIs: OptionKind.glob,
help: '(deprecated) Dart symbols declared in these files will be '
'treated as though they have the @nodoc directive added to their '
'documentation comment.'),
DartdocOptionArgOnly<String>('output',
resourceProvider.pathContext.join('doc', 'api'), resourceProvider,
optionIs: OptionKind.dir, help: 'Path to the output directory.'),
Expand Down
6 changes: 0 additions & 6 deletions lib/src/model/documentation_comment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,9 @@ mixin DocumentationComment
/// dartdoc's generated output.
///
/// An element is considered to be 'nodoc' if any of the following are true:
/// * a global 'nodoc' configuration has been set for this element (this
/// feature is deprecated),
/// * the element has no documentation comment,
/// * the documentation comment contains the `@nodoc` dartdoc directive.
late final bool hasNodoc = () {
if (packageGraph
.configSetsNodocFor(element.library2!.firstFragment.source.fullName)) {
return true;
}
if (!hasDocumentationComment) {
return false;
}
Expand Down
55 changes: 10 additions & 45 deletions lib/src/model/package_graph.dart
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,14 @@ class PackageGraph with CommentReferable, Nameable {
e.canonicalModelElement == null ||
e is Library ||
e.enclosingElement!.isCanonical) {
for (var d in e.documentationFrom
.where((d) => d.hasDocumentationComment)) {
for (var d
in e.documentationFrom.where((d) => d.hasDocumentationComment)) {
if (d.needsPrecache && !precachedElements.contains(d)) {
precachedElements.add(d as ModelElement);
futures.add(d.precacheLocalDocs());
// [TopLevelVariable]s get their documentation from getters and
// setters, so should be precached if either has a template.
if (e is TopLevelVariable &&
!precachedElements.contains(e)) {
if (e is TopLevelVariable && !precachedElements.contains(e)) {
precachedElements.add(e);
futures.add(e.precacheLocalDocs());
}
Expand Down Expand Up @@ -647,7 +646,8 @@ class PackageGraph with CommentReferable, Nameable {
checkAndAddContainer(modelElement, container);
}
} else if (container is Mixin) {
for (var modelElement in container.superclassConstraints.modelElements) {
for (var modelElement
in container.superclassConstraints.modelElements) {
checkAndAddContainer(modelElement, container);
}
}
Expand Down Expand Up @@ -752,8 +752,7 @@ class PackageGraph with CommentReferable, Nameable {
// TODO(keertip): Find a better way to exclude members of extensions
// when libraries are specified using the "--include" flag.
if (library != null && library.isDocumented) {
return getModelFor(e, library,
enclosingContainer: preferredClass);
return getModelFor(e, library, enclosingContainer: preferredClass);
}
}
// TODO(jcollins-g): The data structures should be changed to eliminate
Expand All @@ -778,8 +777,7 @@ class PackageGraph with CommentReferable, Nameable {
var setterElement = setter2 == null
? null
: getModelFor(setter2, library) as Accessor;
canonicalModelElement = getModelForPropertyInducingElement(
e, library,
canonicalModelElement = getModelForPropertyInducingElement(e, library,
getter: getterElement, setter: setterElement);
} else {
canonicalModelElement = getModelFor(e, library);
Expand All @@ -791,8 +789,7 @@ class PackageGraph with CommentReferable, Nameable {
}
}
// Prefer fields and top-level variables.
if (e is PropertyAccessorElement2 &&
canonicalModelElement is Accessor) {
if (e is PropertyAccessorElement2 && canonicalModelElement is Accessor) {
canonicalModelElement = canonicalModelElement.enclosingCombo;
}
return canonicalModelElement;
Expand All @@ -804,8 +801,8 @@ class PackageGraph with CommentReferable, Nameable {
var elem = modelElement.element;
var candidates = <ModelElement>{};
if (lib != null) {
var constructedWithKey = allConstructedModelElements[
ConstructedModelElementsKey(elem, null)];
var constructedWithKey =
allConstructedModelElements[ConstructedModelElementsKey(elem, null)];
if (constructedWithKey != null) {
candidates.add(constructedWithKey);
}
Expand Down Expand Up @@ -909,38 +906,6 @@ class PackageGraph with CommentReferable, Nameable {
return allElements;
}

/// Cache of 'nodoc' configurations.
///
/// Glob lookups can be expensive, so cache per filename.
final _configSetsNodocFor = HashMap<String, bool>();

/// Given an element's [fullName], look up the nodoc configuration data and
/// determine whether to unconditionally treat the element as "nodoc", an
/// attribute indicating that documentation should not be included in
/// dartdoc's generated output.
///
/// This configuration setting is deprecated.
bool configSetsNodocFor(String fullName) {
return _configSetsNodocFor.putIfAbsent(fullName, () {
var file = resourceProvider.getFile(fullName);
// Direct lookup instead of generating a custom context will save some
// cycles. We can't use the element's [DartdocOptionContext] because that
// might not be where the element was defined, which is what's important
// for nodoc's semantics. Looking up the defining element just to pull
// a context is again, slow.
var globs = (config.optionSet['nodoc'].valueAt(file.parent) as List)
.cast<String>();
if (globs.isNotEmpty) {
packageGraph.defaultPackage.warn(
PackageWarning.deprecated,
message:
"The '--nodoc' option is deprecated, and will soon be removed.",
);
}
return utils.matchGlobs(globs, fullName);
});
}

/// Returns a macro by [name], or `null` if no macro is found.
String? getMacro(String name) {
assert(_localDocumentationBuilt);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const packageVersion = '8.3.3';
const packageVersion = '9.0.0-dev';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dartdoc
version: 8.3.3
version: 9.0.0-dev
description: A non-interactive HTML documentation generator for Dart source code.
repository: https://github.com/dart-lang/dartdoc

Expand Down
16 changes: 0 additions & 16 deletions test/end2end/model_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1153,22 +1153,6 @@ void main() async {
});
});

group('Comment processing', () {
test('can virtually add nodoc via options file', () {
var NodocMeLibrary =
packageGraph.defaultPackage.allLibraries.named('nodocme');
expect(NodocMeLibrary.hasNodoc, isTrue);
var NodocMeImplementation =
fakeLibrary.classes.named('NodocMeImplementation');
expect(NodocMeImplementation.hasNodoc, isTrue);
expect(NodocMeImplementation.isPublic, isFalse);
var MeNeitherEvenWithoutADocComment =
fakeLibrary.classes.named('MeNeitherEvenWithoutADocComment');
expect(MeNeitherEvenWithoutADocComment.hasNodoc, isTrue);
expect(MeNeitherEvenWithoutADocComment.isPublic, isFalse);
});
});

group('doc references', () {
late final String docsAsHtml;

Expand Down
1 change: 0 additions & 1 deletion testing/test_package/dartdoc_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dartdoc:
Unreal:
markdown: "Unreal.md"
Real Libraries:
nodoc: ["lib/src/nodoc*.dart"]
tools:
drill:
command: ["bin/drill.dart"]
Expand Down
3 changes: 0 additions & 3 deletions testing/test_package/lib/fake.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ import 'mylibpub.dart' as renamedLib2;
import 'two_exports.dart' show BaseClass;
export 'src/notadotdartfile';

// Verify that even though reexported, objects don't show in documentation.
export 'package:test_package/src/nodocme.dart';

// ignore: uri_does_not_exist
export 'package:test_package_imported/categoryExporting.dart'
show IAmAClassWithCategories;
Expand Down
11 changes: 0 additions & 11 deletions testing/test_package/lib/src/nodocme.dart

This file was deleted.

Loading