Skip to content

Commit 766a9b4

Browse files
authored
@hideConstantImplementations by default. (#3576)
* @hideConstantImplementations by default. * Remove more parts of the directive, but allow parsing. * Revert some deletions. * Fix generated. * Flutter checks for replaced directives.
1 parent 137b9b7 commit 766a9b4

8 files changed

+44
-146
lines changed

README.md

-35
Original file line numberDiff line numberDiff line change
@@ -408,41 +408,6 @@ markdown link isn't linked).
408408
It's best to only inject HTML that is self-contained and doesn't depend upon
409409
other elements on the page, since those may change in future versions of Dartdoc.
410410

411-
### Skipping constant rendering with one-line docs
412-
413-
For some classes or libraries full of well-documented constants, showing the
414-
implementation on the enclosing `class` or `library` page can be distracting
415-
or even misleading. To prevent the rendering of constant implementations,
416-
place the `{@hideConstantImplementations}` in the documentation comment for
417-
the enclosing context where the constant is defined. For members of a class,
418-
place the directive in the class documentation where the constants are defined.
419-
For top level constants, place the directive in the library where the constants
420-
are defined.
421-
422-
For example:
423-
424-
```dart
425-
/// This is truly an amazing library.
426-
/// {@hideConstantImplementations}
427-
library my_library;
428-
429-
/// This top level constant will not show its implementation.
430-
const a = 7;
431-
432-
/// {@hideConstantImplementations}
433-
class A {
434-
/// This constant will not show its implementation.
435-
static const aConst = 12;
436-
}
437-
438-
class B {
439-
/// Despite the library directive, because this is a class
440-
/// member and there is no hideConstantImplementations
441-
/// directive on the class, we will show this implementation.
442-
static const bConst = 27;
443-
}
444-
```
445-
446411
### Auto including dependencies
447412

448413
If `--auto-include-dependencies` flag is provided, dartdoc tries to automatically add

lib/src/generator/templates.runtime_renderers.dart

-22
Original file line numberDiff line numberDiff line change
@@ -6121,13 +6121,6 @@ class _Renderer_Field extends RendererBase<Field> {
61216121
parent: r);
61226122
},
61236123
),
6124-
'hasHideConstantImplementation': Property(
6125-
getValue: (CT_ c) => c.hasHideConstantImplementation,
6126-
renderVariable: (CT_ c, Property<CT_> self,
6127-
List<String> remainingNames) =>
6128-
self.renderSimpleVariable(c, remainingNames, 'bool'),
6129-
getBool: (CT_ c) => c.hasHideConstantImplementation == true,
6130-
),
61316124
'href': Property(
61326125
getValue: (CT_ c) => c.href,
61336126
renderVariable:
@@ -6820,13 +6813,6 @@ class _Renderer_GetterSetterCombo extends RendererBase<GetterSetterCombo> {
68206813
self.renderSimpleVariable(c, remainingNames, 'bool'),
68216814
getBool: (CT_ c) => c.hasGetterOrSetter == true,
68226815
),
6823-
'hasHideConstantImplementation': Property(
6824-
getValue: (CT_ c) => c.hasHideConstantImplementation,
6825-
renderVariable: (CT_ c, Property<CT_> self,
6826-
List<String> remainingNames) =>
6827-
self.renderSimpleVariable(c, remainingNames, 'bool'),
6828-
getBool: (CT_ c) => c.hasHideConstantImplementation == true,
6829-
),
68306816
'hasNoGetterSetter': Property(
68316817
getValue: (CT_ c) => c.hasNoGetterSetter,
68326818
renderVariable: (CT_ c, Property<CT_> self,
@@ -15123,13 +15109,6 @@ class _Renderer_TopLevelVariable extends RendererBase<TopLevelVariable> {
1512315109
parent: r);
1512415110
},
1512515111
),
15126-
'hasHideConstantImplementation': Property(
15127-
getValue: (CT_ c) => c.hasHideConstantImplementation,
15128-
renderVariable: (CT_ c, Property<CT_> self,
15129-
List<String> remainingNames) =>
15130-
self.renderSimpleVariable(c, remainingNames, 'bool'),
15131-
getBool: (CT_ c) => c.hasHideConstantImplementation == true,
15132-
),
1513315112
'href': Property(
1513415113
getValue: (CT_ c) => c.href,
1513515114
renderVariable:
@@ -16739,7 +16718,6 @@ const _invisibleGetters = {
1673916718
'hasExplicitSetter',
1674016719
'hasGetter',
1674116720
'hasGetterOrSetter',
16742-
'hasHideConstantImplementation',
1674316721
'hasNoGetterSetter',
1674416722
'hasParameters',
1674516723
'hasPublicGetter',

lib/src/model/documentation_comment.dart

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ import 'package:dartdoc/src/warnings.dart';
1313
import 'package:meta/meta.dart';
1414
import 'package:path/path.dart' as p show Context;
1515

16-
final _templatePattern = RegExp(
17-
r'[ ]*\{@template\s+([^\s}].*?)\}([^]+?)\{@endtemplate\}[ ]*(\n?)');
18-
final _htmlPattern = RegExp(
19-
r'[ ]*\{@inject-html\s*\}([^]+?)\{@end-inject-html\}[ ]*\n?');
16+
final _templatePattern =
17+
RegExp(r'[ ]*\{@template\s+([^\s}].*?)\}([^]+?)\{@endtemplate\}[ ]*(\n?)');
18+
final _htmlPattern =
19+
RegExp(r'[ ]*\{@inject-html\s*\}([^]+?)\{@end-inject-html\}[ ]*\n?');
2020

2121
/// Matches all tool directives (even some invalid ones). This is so
2222
/// we can give good error messages if the directive is malformed, instead of
2323
/// just silently emitting it as-is.
24-
final _basicToolPattern = RegExp(
25-
r'[ ]*{@tool\s+([^\s}][^}]*)}\n?([^]+?)\n?{@end-tool}[ ]*\n?');
24+
final _basicToolPattern =
25+
RegExp(r'[ ]*{@tool\s+([^\s}][^}]*)}\n?([^]+?)\n?{@end-tool}[ ]*\n?');
2626

2727
final _examplePattern = RegExp(r'{@example\s+([^\s}][^}]*)}');
2828

lib/src/model/field.dart

-4
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,4 @@ class Field extends ModelElement
181181

182182
@override
183183
Inheritable? get overriddenElement => null;
184-
185-
@override
186-
bool get hasHideConstantImplementation =>
187-
definingEnclosingContainer.hasHideConstantImplementations;
188184
}

lib/src/model/getter_setter_combo.dart

+1-10
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,7 @@ mixin GetterSetterCombo on ModelElement {
5858
bool get isInherited;
5959

6060
/// Whether this has a constant value which should be displayed.
61-
bool get hasConstantValueForDisplay {
62-
final element = this.element;
63-
if (element is! ConstVariableElement) return false;
64-
if (hasHideConstantImplementation) return false;
65-
return element.constantInitializer != null;
66-
}
61+
bool get hasConstantValueForDisplay => false;
6762

6863
Expression? get constantInitializer =>
6964
(element as ConstVariableElement).constantInitializer;
@@ -263,10 +258,6 @@ mixin GetterSetterCombo on ModelElement {
263258
// TODO(srawlins): This should be private.
264259
bool get writeOnly => hasPublicSetter && !hasPublicGetter;
265260

266-
/// True if the @hideConstantImplementations directive is present
267-
/// in the defining enclosing element.
268-
bool get hasHideConstantImplementation;
269-
270261
@override
271262
late final Map<String, CommentReferable> referenceChildren = {
272263
if (hasParameters) ...parameters.explicitOnCollisionWith(this),

lib/src/model/top_level_variable.dart

-4
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,4 @@ class TopLevelVariable extends ModelElement
8282

8383
@override
8484
Iterable<CommentReferable> get referenceParents => [definingLibrary];
85-
86-
@override
87-
bool get hasHideConstantImplementation =>
88-
definingLibrary.hasHideConstantImplementations;
8985
}

test/constant_values_test.dart

+37
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ void main() {
1414
if (namedArgumentsAnywhereAllowed) {
1515
defineReflectiveTests(ConstantValuesWithNamedArgumentsAnywhereTest);
1616
}
17+
defineReflectiveTests(HiddenConstantsTest);
1718
});
1819
}
1920

@@ -179,3 +180,39 @@ const r = C(c: 1, d: 2, 3, 4);
179180
equals('<a href="$linkPrefix/C/C.html">C</a>(c: 1, d: 2, 3, 4)'));
180181
}
181182
}
183+
184+
@reflectiveTest
185+
class HiddenConstantsTest extends DartdocTestBase {
186+
@override
187+
String get libraryName => 'hidden_constants';
188+
189+
void test_field() async {
190+
var library = await bootPackageWithLibrary('''
191+
/// Some documentation.
192+
class A {
193+
static const int aConst = 12;
194+
}
195+
''');
196+
var aClass = library.classes.named('A');
197+
var aConst = aClass.constantFields.named('aConst');
198+
expect(aConst.hasConstantValueForDisplay, isFalse);
199+
expect(aClass.documentation, equals('Some documentation.'));
200+
}
201+
202+
void test_topLevel() async {
203+
var library = await bootPackageWithLibrary('''
204+
class A {
205+
static const int aConst = 12;
206+
}
207+
208+
static const aTopLevelConst = 37;
209+
''', libraryPreamble: '''
210+
/// Some documentation.
211+
''');
212+
var aConst = library.classes.named('A').constantFields.named('aConst');
213+
expect(aConst.hasConstantValueForDisplay, isFalse);
214+
var aTopLevelConst = library.constants.named('aTopLevelConst');
215+
expect(aTopLevelConst.hasConstantValueForDisplay, isFalse);
216+
expect(library.documentation, equals('Some documentation.'));
217+
}
218+
}

test/directives/hide_constant_implementations_test.dart

-65
This file was deleted.

0 commit comments

Comments
 (0)