File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,12 @@ const Map<String, String> _featureDescriptions = {
16
16
};
17
17
18
18
const Map <String , String > _featureUrls = {
19
- // TODO(jcollins-g): link to dart.dev for all links once documentation is
20
- // available.
21
- 'sealed' :
22
- 'https://github.com/dart-lang/language/blob/main/accepted/future-releases/sealed-types/feature-specification.md#sealed-types' ,
23
- 'abstract' : 'https://dart.dev/language/classes#abstract-classes' ,
24
- 'base' :
25
- 'https://github.com/dart-lang/language/blob/main/accepted/future-releases/class-modifiers/feature-specification.md#class-modifiers' ,
26
- 'interface' :
27
- 'https://github.com/dart-lang/language/blob/main/accepted/future-releases/class-modifiers/feature-specification.md#class-modifiers' ,
28
- 'final' :
29
- 'https://github.com/dart-lang/language/blob/main/accepted/future-releases/class-modifiers/feature-specification.md#class-modifiers' ,
30
- 'mixin' :
31
- 'https://github.com/dart-lang/language/blob/main/accepted/future-releases/class-modifiers/feature-specification.md#class-modifiers' ,
19
+ 'sealed' : 'https://dart.dev/language/class-modifiers#sealed' ,
20
+ 'abstract' : 'https://dart.dev/language/class-modifiers#abstract' ,
21
+ 'base' : 'https://dart.dev/language/class-modifiers#base' ,
22
+ 'interface' : 'https://dart.dev/language/class-modifiers#interface' ,
23
+ 'final' : 'https://dart.dev/language/class-modifiers#final' ,
24
+ 'mixin' : 'https://dart.dev/language/mixins' ,
32
25
};
33
26
34
27
/// An abstraction for a language feature; used to render tags ('chips') to
You can’t perform that action at this time.
0 commit comments