We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3aecf commit cf1667cCopy full SHA for cf1667c
swift/extractor/translators/DeclTranslator.cpp
@@ -271,7 +271,7 @@ void DeclTranslator::fillTypeDecl(const swift::TypeDecl& decl, codeql::TypeDecl&
271
entry.name = decl.getNameStr().str();
272
for (auto& typeLoc : decl.getInherited()) {
273
if (auto type = typeLoc.getType()) {
274
- entry.base_types.push_back(dispatcher.fetchLabel(type));
+ entry.inherited_types.push_back(dispatcher.fetchLabel(type));
275
}
276
277
fillValueDecl(decl, entry);
0 commit comments