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 624e7d8 + 1cdec2c commit ada833dCopy full SHA for ada833d
lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwiftTypeRef.cpp
@@ -3437,6 +3437,11 @@ TypeSystemSwiftTypeRef::GetCanonicalType(opaque_compiler_type_t type) {
3437
// then we don't have debug info to resolve it from.
3438
CompilerType ast_type =
3439
ReconstructType({weak_from_this(), type}, nullptr).GetCanonicalType();
3440
+ LLDB_LOG(GetLog(LLDBLog::Types),
3441
+ "Cannot resolve type alias in type \"{0}\"",
3442
+ AsMangledName(type));
3443
+ if (!ast_type)
3444
+ return CompilerType();
3445
CompilerType result =
3446
GetTypeFromMangledTypename(ast_type.GetMangledTypeName());
3447
if (result && !llvm::isa<TypeSystemSwiftTypeRefForExpressions>(this))
0 commit comments