Skip to content

Commit 7820d6a

Browse files
committed
fix: propagate current dependency mode when extracting typedefs as a dependency
1 parent d456f87 commit 7820d6a

File tree

4 files changed

+51
-1
lines changed

4 files changed

+51
-1
lines changed

src/lib/AST/ASTVisitor.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1835,8 +1835,13 @@ class ASTVisitor
18351835

18361836
I.Name = extractName(D);
18371837

1838+
// When a symbol has a dependency on a typedef, we also
1839+
// consider the symbol to have a dependency on the aliased
1840+
// type. Therefore, we propagate the current dependency mode
1841+
// when building the TypeInfo for the aliased type
18381842
I.Type = buildTypeInfo(
1839-
D->getUnderlyingType());
1843+
D->getUnderlyingType(),
1844+
currentMode());
18401845

18411846
#if 0
18421847
if(I.Type.Name.empty())
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
namespace N
2+
{
3+
template<typename T>
4+
struct A { };
5+
6+
template<typename T>
7+
using B = A<T>;
8+
9+
template<typename T>
10+
using C = B<T>;
11+
12+
struct D { };
13+
}
14+
15+
struct E : N::C<int> { };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<mrdocs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://github.com/cppalliance/mrdocs/raw/develop/mrdocs.rnc">
4+
<namespace id="//////////////////////////8=">
5+
<struct name="E" id="KJWEqOD/QXinlGIqVHqmIlA5Z6E=">
6+
<file path="dependency-propagation.cpp" line="15" class="def"/>
7+
<base>
8+
<type id="1aINBgFfB9zQVkEDJdB0DyLWTmQ=" name="N::C&lt;int&gt;"/>
9+
</base>
10+
</struct>
11+
<namespace name="N" id="rjlMNXAaWNMkQYMTJzRA1DR0DiE=">
12+
<alias name="C" id="1aINBgFfB9zQVkEDJdB0DyLWTmQ=">
13+
<file path="dependency-propagation.cpp" line="10" class="def"/>
14+
<type id="YZjBn7yW7NyL8yCKqswVvbiptNM=" name="N::B&lt;T&gt;"/>
15+
</alias>
16+
<alias name="B" id="YZjBn7yW7NyL8yCKqswVvbiptNM=">
17+
<file path="dependency-propagation.cpp" line="7" class="def"/>
18+
<type id="P3wHAbrIf4CGxTZs+lXT5a3t2K0=" name="N::A&lt;T&gt;"/>
19+
</alias>
20+
<struct name="A" id="P3wHAbrIf4CGxTZs+lXT5a3t2K0=">
21+
<file path="dependency-propagation.cpp" line="4" class="def"/>
22+
</struct>
23+
</namespace>
24+
</namespace>
25+
</mrdocs>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
filters:
2+
symbols:
3+
exclude:
4+
- 'N'
5+
referenced-declarations: dependency

0 commit comments

Comments
 (0)