Skip to content

Commit 38b6330

Browse files
committed
Add overloaded operator tests
1 parent 5b869ff commit 38b6330

File tree

6 files changed

+56
-10
lines changed

6 files changed

+56
-10
lines changed

source/lib/api/AST/ASTVisitor.cpp

+14-7
Original file line numberDiff line numberDiff line change
@@ -715,10 +715,12 @@ template<class DeclTy>
715715
bool
716716
ASTVisitor::
717717
constructFunction(
718-
FunctionInfo& I, DeclTy* D)
718+
FunctionInfo& I, DeclTy* D, char const* name)
719719
{
720720
if(! extractInfo(I, D))
721721
return false;
722+
if(name)
723+
I.Name = name;
722724
LineNumber = getLine(D);
723725
if(D->isThisDeclarationADefinition())
724726
I.DefLoc.emplace(LineNumber, File, IsFileInRootDir);
@@ -813,15 +815,13 @@ constructFunction(
813815
//
814816
if constexpr(std::derived_from<DeclTy, CXXDestructorDecl>)
815817
{
816-
//I.Name.append("-dtor");
817818
}
818819

819820
//
820821
// CXXConstructorDecl
821822
//
822823
if constexpr(std::derived_from<DeclTy, CXXConstructorDecl>)
823824
{
824-
//I.Name.append("-ctor");
825825
I.specs1.isExplicit = D->getExplicitSpecifier().isSpecified();
826826
}
827827

@@ -830,7 +830,6 @@ constructFunction(
830830
//
831831
if constexpr(std::derived_from<DeclTy, CXXConversionDecl>)
832832
{
833-
//I.Name.append("-conv");
834833
I.specs1.isExplicit = D->getExplicitSpecifier().isSpecified();
835834
}
836835

@@ -1082,12 +1081,13 @@ requires std::derived_from<DeclTy, CXXMethodDecl>
10821081
void
10831082
ASTVisitor::
10841083
buildFunction(
1085-
DeclTy* D)
1084+
DeclTy* D,
1085+
char const* name)
10861086
{
10871087
if(! shouldExtract(D))
10881088
return;
10891089
FunctionInfo I;
1090-
if(! constructFunction(I, D))
1090+
if(! constructFunction(I, D, name))
10911091
return;
10921092
insertBitcode(ex_, writeBitcode(I));
10931093
insertBitcode(ex_, writeParent(I, D->getAccess()));
@@ -1213,9 +1213,16 @@ WalkUpFromCXXDestructorDecl(
12131213

12141214
bool
12151215
ASTVisitor::
1216-
WalkUpFromCXXConstructorDecl(
1216+
TraverseCXXConstructorDecl(
12171217
CXXConstructorDecl* D)
12181218
{
1219+
/*
1220+
auto s = D->getParent()->getName();
1221+
std::string s;
1222+
DeclarationName DN = D->getDeclName();
1223+
if(DN)
1224+
s = DN.getAsString();
1225+
*/
12191226
buildFunction(D);
12201227
return true;
12211228
}

source/lib/api/AST/ASTVisitor.hpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ class ASTVisitor
7979
void extractBases(RecordInfo& I, CXXRecordDecl* D);
8080

8181
private:
82-
template<class DeclTy> bool constructFunction(FunctionInfo& I, DeclTy* D);
82+
template<class DeclTy>
83+
bool constructFunction(
84+
FunctionInfo& I, DeclTy* D, char const* name = nullptr);
8385

8486
void buildNamespace (NamespaceDecl* D);
8587
void buildRecord (CXXRecordDecl* D);
@@ -91,7 +93,7 @@ class ASTVisitor
9193

9294
template<class DeclTy>
9395
requires std::derived_from<DeclTy, CXXMethodDecl>
94-
void buildFunction(DeclTy* D);
96+
void buildFunction(DeclTy* D, char const* name = nullptr);
9597

9698
template<class DeclTy>
9799
requires (! std::derived_from<DeclTy, CXXMethodDecl>)
@@ -104,7 +106,7 @@ class ASTVisitor
104106
bool WalkUpFromCXXRecordDecl(CXXRecordDecl* D);
105107
bool WalkUpFromCXXMethodDecl(CXXMethodDecl* D);
106108
bool WalkUpFromCXXDestructorDecl(CXXDestructorDecl* D);
107-
bool WalkUpFromCXXConstructorDecl(CXXConstructorDecl* D);
109+
bool TraverseCXXConstructorDecl(CXXConstructorDecl* D);
108110
bool WalkUpFromCXXConversionDecl(CXXConversionDecl* D);
109111
bool WalkUpFromFunctionDecl(FunctionDecl* D);
110112
bool WalkUpFromFriendDecl(FriendDecl* D);
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
struct T
2+
{
3+
T operator+();
4+
};
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<mrdox xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://github.com/cppalliance/mrdox/raw/develop/mrdox.rnc">
4+
<namespace name="">
5+
<struct name="T" id="CgGNdHpW5mG/i5741WPYQDw28OQ=">
6+
<file path="overloaded-op-1.cpp" line="1" class="def"/>
7+
<function name="operator+" id="2JysU2zJdfiiAb7nyNnvkDzkKvU=">
8+
<file path="overloaded-op-1.cpp" line="3"/>
9+
<attr id="operator" name="plus" value="5"/>
10+
<return type="T" id="CgGNdHpW5mG/i5741WPYQDw28OQ="/>
11+
</function>
12+
</struct>
13+
</namespace>
14+
</mrdox>
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
struct T
2+
{
3+
T operator+(T);
4+
};
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<mrdox xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://github.com/cppalliance/mrdox/raw/develop/mrdox.rnc">
4+
<namespace name="">
5+
<struct name="T" id="CgGNdHpW5mG/i5741WPYQDw28OQ=">
6+
<file path="overloaded-op-2.cpp" line="1" class="def"/>
7+
<function name="operator+" id="LhEvBUAmiZm97R+EE8Wp8+CtOwU=">
8+
<file path="overloaded-op-2.cpp" line="3"/>
9+
<attr id="operator" name="plus" value="5"/>
10+
<return type="T" id="CgGNdHpW5mG/i5741WPYQDw28OQ="/>
11+
<param type="T" id="CgGNdHpW5mG/i5741WPYQDw28OQ="/>
12+
</function>
13+
</struct>
14+
</namespace>
15+
</mrdox>

0 commit comments

Comments
 (0)