File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed
testing/test_package/lib/src Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 44
55import 'package:dartdoc/src/generator/generator.dart' ;
66import 'package:dartdoc/src/generator/generator_backend.dart' ;
7- import 'package:dartdoc/src/generator/templates.dart' ;
87import 'package:dartdoc/src/logging.dart' ;
98import 'package:dartdoc/src/model/model.dart' ;
109import 'package:dartdoc/src/model_utils.dart' ;
@@ -20,14 +19,6 @@ class GeneratorFrontEnd implements Generator {
2019
2120 @override
2221 Future <void > generate (PackageGraph ? packageGraph) async {
23- if (_generatorBackend.templates is RuntimeTemplates ) {
24- packageGraph? .defaultPackage.warn (
25- PackageWarning .deprecated,
26- message: "The '--templates-dir' option is deprecated, and will soon no "
27- 'longer be supported.' ,
28- );
29- }
30-
3122 await _generatorBackend.generateAdditionalFiles ();
3223
3324 if (packageGraph == null ) {
Original file line number Diff line number Diff line change 1+ ///
2+ /// The library nodocme should never have any members documented, even if
3+ /// reexported, due to dartdoc_options.yaml in the package root.
4+ ///
5+ library nodocme;
6+
7+ /// I should not appear in documentation.
8+ class NodocMeImplementation {}
9+
10+ class MeNeitherEvenWithoutADocComment {}
You can’t perform that action at this time.
0 commit comments