@@ -187,13 +187,6 @@ class TypeSystemSwift : public TypeSystem {
187
187
// / For example, int is converted to Int32.
188
188
virtual CompilerType ConvertClangTypeToSwiftType (CompilerType clang_type) = 0;
189
189
190
- void DumpValue (lldb::opaque_compiler_type_t type, ExecutionContext *exe_ctx,
191
- Stream &s, lldb::Format format, const DataExtractor &data,
192
- lldb::offset_t data_offset, size_t data_byte_size,
193
- uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset,
194
- bool show_types, bool show_summary, bool verbose,
195
- uint32_t depth) override ;
196
-
197
190
// / \see lldb_private::TypeSystem::Dump
198
191
void Dump (llvm::raw_ostream &output) override ;
199
192
@@ -231,10 +224,6 @@ class TypeSystemSwift : public TypeSystem {
231
224
return {};
232
225
}
233
226
bool IsScalarType (lldb::opaque_compiler_type_t type) override ;
234
- bool IsCStringType (lldb::opaque_compiler_type_t type,
235
- uint32_t &length) override {
236
- return false ;
237
- }
238
227
bool IsVectorType (lldb::opaque_compiler_type_t type,
239
228
CompilerType *element_type, uint64_t *size) override {
240
229
return false ;
@@ -323,12 +312,6 @@ class TypeSystemSwift : public TypeSystem {
323
312
CompilerType GetNonReferenceType (lldb::opaque_compiler_type_t type) override {
324
313
return {};
325
314
}
326
-
327
- // TODO: This method appear unused. Should they be removed?
328
- void DumpSummary (lldb::opaque_compiler_type_t type, ExecutionContext *exe_ctx,
329
- Stream &s, const DataExtractor &data,
330
- lldb::offset_t data_offset, size_t data_byte_size) override {
331
- }
332
315
// / \}
333
316
protected:
334
317
// / Used in the logs.
0 commit comments