Skip to content

Commit 69d33cb

Browse files
authored
Merge pull request #11556 from hamishknight/fish-whisperer-rebranch
[rebranch] [lldb] Update for removal of UnresolvedType
2 parents f82e605 + 126ccf2 commit 69d33cb

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6137,7 +6137,6 @@ SwiftASTContext::GetTypeInfo(opaque_compiler_type_t type,
61376137
case swift::TypeKind::SILMoveOnlyWrapped:
61386138
case swift::TypeKind::SILToken:
61396139
case swift::TypeKind::TypeVariable:
6140-
case swift::TypeKind::Unresolved:
61416140
case swift::TypeKind::VariadicSequence:
61426141
LOG_PRINTF(GetLog(LLDBLog::Types), "Unexpected type: %s",
61436142
swift_can_type.getString().c_str());
@@ -6301,7 +6300,6 @@ lldb::TypeClass SwiftASTContext::GetTypeClass(opaque_compiler_type_t type) {
63016300
case swift::TypeKind::SILPack:
63026301
case swift::TypeKind::SILToken:
63036302
case swift::TypeKind::PackArchetype:
6304-
case swift::TypeKind::Unresolved:
63056303
case swift::TypeKind::VariadicSequence:
63066304
assert(false && "Internal compiler type");
63076305
break;
@@ -6809,7 +6807,6 @@ lldb::Encoding SwiftASTContext::GetEncoding(opaque_compiler_type_t type,
68096807
case swift::TypeKind::PackArchetype:
68106808
case swift::TypeKind::TypeVariable:
68116809
case swift::TypeKind::ErrorUnion:
6812-
case swift::TypeKind::Unresolved:
68136810
case swift::TypeKind::VariadicSequence:
68146811
break;
68156812
case swift::TypeKind::BuiltinInteger:
@@ -6937,7 +6934,6 @@ SwiftASTContext::GetNumChildren(opaque_compiler_type_t type,
69376934
case swift::TypeKind::SILPack:
69386935
case swift::TypeKind::SILToken:
69396936
case swift::TypeKind::TypeVariable:
6940-
case swift::TypeKind::Unresolved:
69416937
case swift::TypeKind::VariadicSequence:
69426938
break;
69436939
case swift::TypeKind::UnmanagedStorage:
@@ -7066,7 +7062,6 @@ uint32_t SwiftASTContext::GetNumFields(opaque_compiler_type_t type,
70667062
case swift::TypeKind::SILPack:
70677063
case swift::TypeKind::SILToken:
70687064
case swift::TypeKind::TypeVariable:
7069-
case swift::TypeKind::Unresolved:
70707065
case swift::TypeKind::VariadicSequence:
70717066
break;
70727067
case swift::TypeKind::UnmanagedStorage:
@@ -7295,7 +7290,6 @@ CompilerType SwiftASTContext::GetFieldAtIndex(opaque_compiler_type_t type,
72957290
case swift::TypeKind::SILPack:
72967291
case swift::TypeKind::SILToken:
72977292
case swift::TypeKind::TypeVariable:
7298-
case swift::TypeKind::Unresolved:
72997293
case swift::TypeKind::VariadicSequence:
73007294
break;
73017295
case swift::TypeKind::UnmanagedStorage:
@@ -7514,7 +7508,6 @@ uint32_t SwiftASTContext::GetNumPointeeChildren(opaque_compiler_type_t type) {
75147508
case swift::TypeKind::Tuple:
75157509
case swift::TypeKind::TypeVariable:
75167510
case swift::TypeKind::UnboundGeneric:
7517-
case swift::TypeKind::Unresolved:
75187511
case swift::TypeKind::VariadicSequence:
75197512
return 0;
75207513
case swift::TypeKind::BuiltinInteger:
@@ -7667,7 +7660,6 @@ llvm::Expected<CompilerType> SwiftASTContext::GetChildCompilerTypeAtIndex(
76677660
case swift::TypeKind::SILToken:
76687661
case swift::TypeKind::TypeVariable:
76697662
case swift::TypeKind::UnboundGeneric:
7670-
case swift::TypeKind::Unresolved:
76717663
case swift::TypeKind::VariadicSequence:
76727664
break;
76737665

@@ -8063,7 +8055,6 @@ size_t SwiftASTContext::GetIndexOfChildMemberWithName(
80638055
case swift::TypeKind::SILToken:
80648056
case swift::TypeKind::TypeVariable:
80658057
case swift::TypeKind::UnboundGeneric:
8066-
case swift::TypeKind::Unresolved:
80678058
case swift::TypeKind::VariadicSequence:
80688059
break;
80698060

@@ -8456,7 +8447,6 @@ bool SwiftASTContext::DumpTypeValue(
84568447
case swift::TypeKind::Tuple:
84578448
case swift::TypeKind::TypeVariable:
84588449
case swift::TypeKind::UnboundGeneric:
8459-
case swift::TypeKind::Unresolved:
84608450
case swift::TypeKind::VariadicSequence:
84618451
break;
84628452

0 commit comments

Comments
 (0)