@@ -24,8 +24,6 @@ final _htmlPattern =
24
24
final _basicToolPattern =
25
25
RegExp (r'[ ]*{@tool\s+([^\s}][^}]*)}\n?([^]+?)\n?{@end-tool}[ ]*\n?' );
26
26
27
- final _examplePattern = RegExp (r'{@example\s+([^\s}][^}]*)}' );
28
-
29
27
final _macroRegExp = RegExp (r'{@macro\s+([^\s}][^}]*)}' );
30
28
31
29
final _htmlInjectRegExp = RegExp (r'<dartdoc-html>([a-f0-9]+)</dartdoc-html>' );
@@ -97,7 +95,6 @@ mixin DocumentationComment
97
95
String _processCommentWithoutTools (String documentationComment) {
98
96
var docs = stripComments (documentationComment);
99
97
if (docs.contains ('{@' )) {
100
- docs = _injectExamples (docs);
101
98
docs = _injectYouTube (docs);
102
99
docs = _injectAnimations (docs);
103
100
// TODO(srawlins): Processing templates here causes #2281. But leaving
@@ -126,7 +123,6 @@ mixin DocumentationComment
126
123
return docs;
127
124
}
128
125
_checkForUnknownDirectives (docs);
129
- docs = _injectExamples (docs);
130
126
docs = _injectYouTube (docs);
131
127
docs = _injectAnimations (docs);
132
128
docs = _stripMacroTemplatesAndAddToIndex (docs);
@@ -147,7 +143,6 @@ mixin DocumentationComment
147
143
'end-inject-html' ,
148
144
'end-tool' ,
149
145
'endtemplate' ,
150
- 'example' ,
151
146
'macro' ,
152
147
'inject-html' ,
153
148
'template' ,
@@ -284,105 +279,6 @@ mixin DocumentationComment
284
279
.cast <String , String >();
285
280
}
286
281
287
- /// Replace {@example ...} in API comments with the content of named file.
288
- ///
289
- /// Syntax:
290
- ///
291
- /// {@example PATH [region=NAME] [lang=NAME]}
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
- /// {@example examples/angular/quickstart/web/main.dart}
301
- /// {@example abc/def/xyz_component.dart region=template lang=html}
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
-
386
282
/// Matches all youtube directives (even some invalid ones). This is so
387
283
/// we can give good error messages if the directive is malformed, instead of
388
284
/// just silently emitting it as-is.
0 commit comments