Skip to content

Commit 89a3b4a

Browse files
authored
Remove @example. (#3715)
1 parent 7827641 commit 89a3b4a

9 files changed

+0
-379
lines changed

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ dartdoc:
124124
markdown: doc/Second.md
125125
name: Great
126126
categoryOrder: ["First Category", "Second Category"]
127-
examplePathPrefix: 'subdir/with/examples'
128127
includeExternal: ['bin/unusually_located_library.dart']
129128
nodoc: ['lib/sekret/*.dart']
130129
linkTo:
@@ -150,8 +149,6 @@ Unrecognized options will be ignored. Supported options:
150149
defined in dartdoc_options.yaml, those declared categories in the source code will be invisible.
151150
* **categoryOrder**: Specify the order of topics for display in the sidebar and
152151
the package page.
153-
* **examplePathPrefix**: Specify the location of the example directory for resolving `@example`
154-
directives.
155152
* **exclude**: Specify a list of library names to avoid generating docs for,
156153
overriding any specified in include. All libraries listed must be local to this package, unlike
157154
the command line `--exclude`. See also `nodoc`.

doc/directives.md

-21
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,6 @@ own documentation page, listing all of the categorized elements.
2828

2929
TODO(srawlins): Document.
3030

31-
## `{@example}` - Examples (deprecated)
32-
33-
Examples from the file system can be inlined by using the `{@example}`
34-
directive. The file path, the region, and the example language can all be
35-
specified with the following syntax:
36-
37-
```none
38-
/// {@example PATH [region=NAME] [lang=NAME]}
39-
```
40-
41-
All example file names must have the extension, `.md`, and this extension must
42-
not be specified in the example `PATH`. `PATH` must be specified as a relative
43-
path from the root of the project for which documentation is being generated.
44-
Given `dir/file.dart` as `PATH`, an example will be extracted from
45-
`dir/file.dart.md`, relative to the project root directory.
46-
47-
During doc generation, dartdoc will replace the `{@example}` directive with the
48-
contents of the example file, verbatim.
49-
50-
TODO(srawlins): Document region, lang, `--example-path-prefix`.
51-
5231
## `{@inject-html}` - Injected HTML
5332

5433
HTML can be rendered unmodified by including it between `{@inject-html}` and

lib/src/dartdoc_options.dart

-10
Original file line numberDiff line numberDiff line change
@@ -1293,10 +1293,6 @@ class DartdocOptionContext extends DartdocOptionContextBase
12931293
CategoryConfiguration get categories =>
12941294
optionSet['categories'].valueAt(context);
12951295

1296-
// TODO(srawlins): Remove when we remove support for `{@example}`.
1297-
String? get examplePathPrefix =>
1298-
optionSet['examplePathPrefix'].valueAt(context);
1299-
13001296
// TODO(srawlins): This memoization saved a lot of time in unit testing, but
13011297
// is the first value in this class to be memoized. Memoize others?
13021298
late final Set<String> exclude =
@@ -1554,12 +1550,6 @@ List<DartdocOption> createDartdocOptions(
15541550
convertYamlToType: CategoryConfiguration.fromYamlMap,
15551551
help: 'A list of all categories, their display names, and markdown '
15561552
'documentation in the order they are to be displayed.'),
1557-
// TODO(srawlins): Remove when we remove support for `{@example}`.
1558-
DartdocOptionArgFile<String?>('examplePathPrefix', null, resourceProvider,
1559-
optionIs: OptionKind.dir,
1560-
help: '(deprecated) Prefix for @example paths; defaults to the project '
1561-
'root.',
1562-
mustExist: true),
15631553
DartdocOptionArgFile<List<String>>('exclude', [], resourceProvider,
15641554
help: 'Names of libraries to exclude from documentation.',
15651555
splitCommas: true),

lib/src/generator/templates.runtime_renderers.dart

-1
Original file line numberDiff line numberDiff line change
@@ -16097,7 +16097,6 @@ const _invisibleGetters = {
1609716097
'categories',
1609816098
'categoryOrder',
1609916099
'context',
16100-
'examplePathPrefix',
1610116100
'exclude',
1610216101
'excludeFooterVersion',
1610316102
'flutterRoot',

lib/src/model/documentation_comment.dart

-104
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ final _htmlPattern =
2424
final _basicToolPattern =
2525
RegExp(r'[ ]*{@tool\s+([^\s}][^}]*)}\n?([^]+?)\n?{@end-tool}[ ]*\n?');
2626

27-
final _examplePattern = RegExp(r'{@example\s+([^\s}][^}]*)}');
28-
2927
final _macroRegExp = RegExp(r'{@macro\s+([^\s}][^}]*)}');
3028

3129
final _htmlInjectRegExp = RegExp(r'<dartdoc-html>([a-f0-9]+)</dartdoc-html>');
@@ -97,7 +95,6 @@ mixin DocumentationComment
9795
String _processCommentWithoutTools(String documentationComment) {
9896
var docs = stripComments(documentationComment);
9997
if (docs.contains('{@')) {
100-
docs = _injectExamples(docs);
10198
docs = _injectYouTube(docs);
10299
docs = _injectAnimations(docs);
103100
// TODO(srawlins): Processing templates here causes #2281. But leaving
@@ -126,7 +123,6 @@ mixin DocumentationComment
126123
return docs;
127124
}
128125
_checkForUnknownDirectives(docs);
129-
docs = _injectExamples(docs);
130126
docs = _injectYouTube(docs);
131127
docs = _injectAnimations(docs);
132128
docs = _stripMacroTemplatesAndAddToIndex(docs);
@@ -147,7 +143,6 @@ mixin DocumentationComment
147143
'end-inject-html',
148144
'end-tool',
149145
'endtemplate',
150-
'example',
151146
'macro',
152147
'inject-html',
153148
'template',
@@ -284,105 +279,6 @@ mixin DocumentationComment
284279
.cast<String, String>();
285280
}
286281

287-
/// Replace &#123;@example ...&#125; in API comments with the content of named file.
288-
///
289-
/// Syntax:
290-
///
291-
/// &#123;@example PATH [region=NAME] [lang=NAME]&#125;
292-
///
293-
/// If PATH is `dir/file.ext` and region is `r` then we'll look for the file
294-
/// named `dir/file-r.ext.md`, relative to the project root directory of the
295-
/// project for which the docs are being generated.
296-
///
297-
/// Examples: (escaped in this comment to show literal values in dartdoc's
298-
/// dartdoc)
299-
///
300-
/// &#123;@example examples/angular/quickstart/web/main.dart&#125;
301-
/// &#123;@example abc/def/xyz_component.dart region=template lang=html&#125;
302-
///
303-
String _injectExamples(String rawdocs) {
304-
final dirPath = package.packageMeta.dir.path;
305-
return rawdocs.replaceAllMapped(_examplePattern, (match) {
306-
var args = _getExampleArgs(match[1]!);
307-
if (args == null) {
308-
// Already warned about an invalid parameter if this happens.
309-
return '';
310-
}
311-
warn(
312-
PackageWarning.deprecated,
313-
message:
314-
"The '@example' directive is deprecated, and will soon no longer "
315-
'be supported.',
316-
);
317-
var lang = args['lang'] ??
318-
pathContext.extension(args['src']!).replaceFirst('.', '');
319-
320-
var replacement = match[0]!; // default to fully matched string.
321-
322-
var fragmentFile = packageGraph.resourceProvider.getFile(
323-
pathContext.canonicalize(pathContext.join(dirPath, args['file'])));
324-
325-
if (fragmentFile.exists) {
326-
replacement = fragmentFile.readAsStringSync();
327-
if (lang.isNotEmpty) {
328-
replacement = replacement.replaceFirst('```', '```$lang');
329-
}
330-
} else {
331-
var filePath = element.source!.fullName.substring(dirPath.length + 1);
332-
333-
// TODO(srawlins): If a file exists at the location without the
334-
// appended 'md' extension, note this.
335-
warn(PackageWarning.missingExampleFile,
336-
message: '${fragmentFile.path}; path listed at $filePath');
337-
}
338-
return replacement;
339-
});
340-
}
341-
342-
/// An argument parser used in [_getExampleArgs] to parse an `{@example}`
343-
/// directive.
344-
static final ArgParser _exampleArgParser = ArgParser()
345-
..addOption('lang')
346-
..addOption('region');
347-
348-
/// Helper for [_injectExamples] used to process `@example` arguments.
349-
///
350-
/// Returns a map of arguments. The first unnamed argument will have key
351-
/// 'src'. The computed file path, constructed from 'src' and 'region' will
352-
/// have key 'file'.
353-
Map<String, String?>? _getExampleArgs(String argsAsString) {
354-
var results = _parseArgs(argsAsString, _exampleArgParser, 'example');
355-
if (results == null) {
356-
return null;
357-
}
358-
359-
// Extract PATH and fix the path separators.
360-
var src = results.rest.isEmpty
361-
? ''
362-
: results.rest.first.replaceAll('/', pathContext.separator);
363-
var args = <String, String?>{
364-
'src': src,
365-
'lang': results['lang'],
366-
'region': results['region'] ?? '',
367-
};
368-
369-
// Compute 'file' from region and src.
370-
final fragExtension = '.md';
371-
var file = src + fragExtension;
372-
var region = args['region'] ?? '';
373-
if (region.isNotEmpty) {
374-
var dir = pathContext.dirname(src);
375-
var basename = pathContext.basenameWithoutExtension(src);
376-
var ext = pathContext.extension(src);
377-
file = pathContext.join(dir, '$basename-$region$ext$fragExtension');
378-
}
379-
var examplePathPrefix = config.examplePathPrefix;
380-
args['file'] = examplePathPrefix == null
381-
? file
382-
: pathContext.join(examplePathPrefix, file);
383-
return args;
384-
}
385-
386282
/// Matches all youtube directives (even some invalid ones). This is so
387283
/// we can give good error messages if the directive is malformed, instead of
388284
/// just silently emitting it as-is.

lib/src/model/package_graph.dart

-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,6 @@ class PackageGraph with CommentReferable, Nameable {
459459
PackageWarning.invalidParameter ||
460460
PackageWarning.toolError ||
461461
PackageWarning.deprecated ||
462-
PackageWarning.missingExampleFile ||
463462
PackageWarning.missingCodeBlockLanguage =>
464463
kind.messageFor([message])
465464
};

lib/src/warnings.dart

-7
Original file line numberDiff line numberDiff line change
@@ -279,13 +279,6 @@ enum PackageWarning implements Comparable<PackageWarning> {
279279
'deprecated dartdoc usage: {0}',
280280
shortHelp: 'A dartdoc directive has a deprecated format.',
281281
),
282-
missingExampleFile(
283-
'missing-example-file',
284-
'example file not found: {0}',
285-
shortHelp:
286-
"A file which is indicated by an '{@example}' directive could not be "
287-
'found',
288-
),
289282
missingCodeBlockLanguage(
290283
'missing-code-block-language',
291284
'missing code block language: {0}',

0 commit comments

Comments
 (0)