Skip to content

Commit be736d3

Browse files
committed
SourceInfo provides primary location
#improvement
1 parent a95ddca commit be736d3

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

include/mrdocs/Metadata/Source.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ MRDOCS_DECL
142142
void
143143
merge(SourceInfo& I, SourceInfo&& Other);
144144

145+
MRDOCS_DECL
146+
OptionalLocation
147+
getPrimaryLocation(SourceInfo const& I);
148+
145149
void
146150
tag_invoke(
147151
dom::ValueFromTag,

src/lib/Metadata/Source.cpp

+24
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,30 @@ merge(SourceInfo& I, SourceInfo&& Other)
8080
mergeImpl<true>(I, Other);
8181
}
8282

83+
OptionalLocation
84+
getPrimaryLocation(SourceInfo const& I)
85+
{
86+
OptionalLocation primaryLoc;
87+
if (I.DefLoc)
88+
{
89+
primaryLoc = *I.DefLoc;
90+
}
91+
else if (!I.Loc.empty())
92+
{
93+
auto const documentedIt = std::ranges::find_if(
94+
I.Loc, &Location::Documented);
95+
if (documentedIt != I.Loc.end())
96+
{
97+
primaryLoc = *documentedIt;
98+
}
99+
else
100+
{
101+
primaryLoc = I.Loc.front();
102+
}
103+
}
104+
return primaryLoc;
105+
}
106+
83107
template <class IO>
84108
void
85109
tag_invoke(

0 commit comments

Comments
 (0)