Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug around ref resolution of type mentioned in type arguments #3768

Merged
merged 1 commit into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 9 additions & 24 deletions lib/src/markdown_processor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -165,30 +165,15 @@ MatchingLinkResult _getMatchingLinkElement(
String referenceText, Warnable element) {
var commentReference = ModelCommentReference(referenceText);

// A filter to be used by [CommentReferable.referenceBy].
bool Function(CommentReferable?) filter;

// An "allow tree" filter to be used by [CommentReferable.referenceBy].
bool Function(CommentReferable?) allowTree;

if (commentReference.hasCallableHint) {
allowTree = (_) => true;
// Trailing parens indicate we are looking for a callable.
filter = _requireCallable;
} else {
allowTree = (_) => true;
// Neither reject, nor require, an unnamed constructor in the event the
// comment reference structure implies one. (We cannot require it in case a
// library name is the same as a member class name and the class is the
// intended lookup).
filter = commentReference.hasCallableHint
? _requireCallable
// Without hints, reject unnamed constructors and their parameters to
// force resolution to the class.
: filter = _rejectUnnamedAndShadowingConstructors;
}
var lookupResult = element.referenceBy(commentReference.referenceBy,
allowTree: allowTree, filter: filter);
var filter = commentReference.hasCallableHint
// Trailing parens indicate we are looking for a callable.
? _requireCallable
// Without hints, reject unnamed constructors and their parameters to
// force resolution to the class.
: _rejectUnnamedAndShadowingConstructors;

var lookupResult =
element.referenceBy(commentReference.referenceBy, filter: filter);

// TODO(jcollins-g): Consider prioritizing analyzer resolution before custom.
return MatchingLinkResult(lookupResult);
Expand Down
45 changes: 18 additions & 27 deletions lib/src/model/comment_referable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,46 +31,44 @@ class _ReferenceChildrenLookup {

/// Support comment reference lookups on a Nameable object.
mixin CommentReferable implements Nameable {
//, ModelBuilderInterface {
/// For any [CommentReferable] where an analyzer [Scope] exists (or can
/// be constructed), implement this. This will take priority over
/// lookups via [referenceChildren]. Can be cached.
Scope? get scope => null;

String? get href => null;

/// Look up a comment reference by its component parts.
/// Looks up a comment reference by its component parts.
///
/// If [tryParents] is true, try looking up the same reference in any parents
/// of `this`. Will skip over results that do not pass a given [filter] and
/// keep searching. Will skip over entire subtrees whose parent node does not
/// pass [allowTree].
/// keep searching.
@nonVirtual
CommentReferable? referenceBy(
List<String> reference, {
required bool Function(CommentReferable?) filter,
required bool Function(CommentReferable?) allowTree,
bool tryParents = true,
Iterable<CommentReferable>? parentOverrides,
}) {
parentOverrides ??= referenceParents;
if (reference.isEmpty) {
return tryParents ? null : this;
}

for (var referenceLookup in _childLookups(reference)) {
if (scope != null) {
var result = _lookupViaScope(referenceLookup,
filter: filter, allowTree: allowTree);
var result = _lookupViaScope(referenceLookup, filter: filter);
if (result != null) {
return result;
}
}
final referenceChildren = this.referenceChildren;
final childrenResult = referenceChildren[referenceLookup.lookup];
if (childrenResult != null) {
var result = _recurseChildrenAndFilter(referenceLookup, childrenResult,
allowTree: allowTree, filter: filter);
var result = _recurseChildrenAndFilter(
referenceLookup,
childrenResult,
filter: filter,
);
if (result != null) {
return result;
}
Expand All @@ -79,11 +77,12 @@ mixin CommentReferable implements Nameable {
// If we can't find it in children, try searching parents if allowed.
if (tryParents) {
for (var parent in parentOverrides) {
var result = parent.referenceBy(reference,
tryParents: true,
parentOverrides: referenceGrandparentOverrides,
allowTree: allowTree,
filter: filter);
var result = parent.referenceBy(
reference,
tryParents: true,
parentOverrides: referenceGrandparentOverrides,
filter: filter,
);
if (result != null) return result;
}
}
Expand All @@ -99,7 +98,6 @@ mixin CommentReferable implements Nameable {
CommentReferable? _lookupViaScope(
_ReferenceChildrenLookup referenceLookup, {
required bool Function(CommentReferable?) filter,
required bool Function(CommentReferable?) allowTree,
}) {
final resultElement = scope!.lookupPreferGetter(referenceLookup.lookup);
if (resultElement == null) return null;
Expand All @@ -122,9 +120,7 @@ mixin CommentReferable implements Nameable {
);
return null;
}
if (!allowTree(result)) return null;
return _recurseChildrenAndFilter(referenceLookup, result,
allowTree: allowTree, filter: filter);
return _recurseChildrenAndFilter(referenceLookup, result, filter: filter);
}

/// Given a [result] found in an implementation of [_lookupViaScope] or
Expand All @@ -134,19 +130,14 @@ mixin CommentReferable implements Nameable {
_ReferenceChildrenLookup referenceLookup,
CommentReferable result, {
required bool Function(CommentReferable?) filter,
required bool Function(CommentReferable?) allowTree,
}) {
CommentReferable? returnValue = result;
if (referenceLookup.remaining.isNotEmpty) {
if (allowTree(result)) {
returnValue = result.referenceBy(referenceLookup.remaining,
tryParents: false, allowTree: allowTree, filter: filter);
} else {
returnValue = null;
}
returnValue = result.referenceBy(referenceLookup.remaining,
tryParents: false, filter: filter);
} else if (!filter(result)) {
returnValue = result.referenceBy([referenceLookup.lookup],
tryParents: false, allowTree: allowTree, filter: filter);
tryParents: false, filter: filter);
}
if (!filter(returnValue)) {
returnValue = null;
Expand Down
18 changes: 16 additions & 2 deletions lib/src/model/method.dart
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,24 @@ class Method extends ModelElement
return from.referenceChildren;
}
return _referenceChildren ??= <String, CommentReferable>{
...modelType.returnType.typeArguments.explicitOnCollisionWith(this),
...modelType.typeArguments.explicitOnCollisionWith(this),
// If we want to include all types referred to in the signature of this
// method, this is woefully incomplete. Notice we don't currently include
// the element of the returned type itself, nor nested type arguments,
// nor other nested types e.g. in the case of function types or record
// types. But this is all being replaced with analyzer's resolution soon.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍
I'm excited to tear all of this out with the analyzer's resolution.

...modelType.returnType.typeArguments.modelElements
.explicitOnCollisionWith(this),
...parameters.explicitOnCollisionWith(this),
...typeParameters.explicitOnCollisionWith(this),
};
}
}

extension on Iterable<ElementType> {
/// The [ModelElement] associated with each type, for each type that is a
/// [DefinedElementType].
List<ModelElement> get modelElements => [
for (var type in this)
if (type is DefinedElementType) type.modelElement,
];
}
24 changes: 5 additions & 19 deletions test/comment_referable/comment_referable_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ abstract class Base with Nameable, CommentReferable {
/// Returns the added (or already existing) [Base].
Base add(String newName);

CommentReferable? lookup<T extends CommentReferable?>(String value,
{bool Function(CommentReferable?)? allowTree,
bool Function(CommentReferable?)? filter}) {
return referenceBy(value.split(_separator),
allowTree: allowTree ?? (_) => true, filter: filter ?? (_) => true);
CommentReferable? lookup<T extends CommentReferable?>(
String value, {
bool Function(CommentReferable?)? filter,
}) {
return referenceBy(value.split(_separator), filter: filter ?? (_) => true);
}

@override
Expand Down Expand Up @@ -165,20 +165,6 @@ void main() {
isA<GenericChild>());
});

test('Check that allowTree works', () {
referable.add('lib4');
var lib4lib4 = referable.add('lib4.lib4');
var tooDeepSub1 = referable.add('lib4.lib4.sub1');
var sub1 = referable.add('lib4.sub1');
var sub2 = referable.add('lib4.sub2');
expect(sub2.lookup('lib4.lib4'), equals(lib4lib4));
expect(sub2.lookup('lib4.sub1'), equals(tooDeepSub1));
expect(
sub2.lookup('lib4.sub1',
allowTree: (r) => r is Base && (r.parent is Top)),
equals(sub1));
});

test('Check that grandparent overrides work', () {
referable.add('lib4');
var i1 = referable.add('lib4.intermediate1');
Expand Down
60 changes: 60 additions & 0 deletions test/enum_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -641,4 +641,64 @@ class C {}
'<a href="$linkPrefix/E/values-constant.html">E.values</a>.</p>',
);
}

void test_canBeReferenced_whenFoundAsReturnType() async {
var library = await bootPackageWithLibrary('''
enum E {
one, two
}

class C {
/// [E] can be referenced.
E m() => E.one;
}
''');
var m = library.classes.named('C').instanceMethods.named('m');

expect(m.hasDocumentationComment, true);
expect(
m.documentationAsHtml,
'<p><a href="$linkPrefix/E.html">E</a> can be referenced.</p>',
);
}

void test_canBeReferenced_whenFoundAsReturnType_typeArgument() async {
var library = await bootPackageWithLibrary('''
enum E {
one, two
}

class C {
/// [E] can be referenced.
Future<E> m() async => E.one;
}
''');
var m = library.classes.named('C').instanceMethods.named('m');

expect(m.hasDocumentationComment, true);
expect(
m.documentationAsHtml,
'<p><a href="$linkPrefix/E.html">E</a> can be referenced.</p>',
);
}

void test_canBeReferenced_whenFoundAsParameterType() async {
var library = await bootPackageWithLibrary('''
enum E {
one, two
}

class C {
/// [E] can be referenced.
void m(E p) {}
}
''');
var m = library.classes.named('C').instanceMethods.named('m');

expect(m.hasDocumentationComment, true);
expect(
m.documentationAsHtml,
'<p><a href="$linkPrefix/E.html">E</a> can be referenced.</p>',
);
}
}
Loading