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 eeb5caa + 7ab4cc2 commit 9a802d8Copy full SHA for 9a802d8
lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwiftTypeRef.cpp
@@ -3427,6 +3427,11 @@ TypeSystemSwiftTypeRef::GetCanonicalType(opaque_compiler_type_t type) {
3427
// then we don't have debug info to resolve it from.
3428
CompilerType ast_type =
3429
ReconstructType({weak_from_this(), type}, nullptr).GetCanonicalType();
3430
+ LLDB_LOG(GetLog(LLDBLog::Types),
3431
+ "Cannot resolve type alias in type \"{0}\"",
3432
+ AsMangledName(type));
3433
+ if (!ast_type)
3434
+ return CompilerType();
3435
CompilerType result =
3436
GetTypeFromMangledTypename(ast_type.GetMangledTypeName());
3437
if (result && !llvm::isa<TypeSystemSwiftTypeRefForExpressions>(this))
0 commit comments