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

Safe guard against not existing definition when inheriting doc #5561

Merged
merged 4 commits into from
Feb 26, 2020
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,15 @@ private static void Copy(MetadataItem dest, string srcName, ResolverContext cont
if (src == null && !context.Members.TryGetValue(srcName, out src))
{
// Try to resolve any templated references before giving up
if (!context.References.TryGetValue(srcName, out var referenceItem) || !context.Members.TryGetValue(referenceItem.Definition, out src))
if (!context.References.TryGetValue(srcName, out var referenceItem) || referenceItem.Definition == null ||
!context.Members.TryGetValue(referenceItem.Definition, out src))
{
Logger.LogWarning($"Could not resolve base documentation for '{dest.Name}'",
file: dest.Source.Path,
line: dest.Source.StartLine != 0 ? dest.Source.StartLine.ToString() : null);
return;
}

}

Copy(dest, src, context);
Expand Down