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.
2 parents 434b1b3 + 069598c commit aeaeadeCopy full SHA for aeaeade
swift/extractor/infra/SwiftDispatcher.h
@@ -265,7 +265,8 @@ class SwiftDispatcher {
265
private:
266
bool isLazyDeclaration(const swift::Decl& decl) {
267
swift::ModuleDecl* module = decl.getModuleContext();
268
- return module->isBuiltinModule() || module->getName().str() == "__ObjC";
+ return module->isBuiltinModule() || module->getName().str() == "__ObjC" ||
269
+ module->isNonSwiftModule();
270
}
271
272
template <typename T, typename = void>
0 commit comments