mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
Move all clang type system DWARF type parsing into ClangASTContext.cpp.
Another step towards isolating all language/AST specific code into the files to further abstract specific implementations of parsing types for a given language. llvm-svn: 245090
This commit is contained in:
@@ -82,8 +82,15 @@ SymbolFile::GetTypeList ()
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
lldb_private::ClangASTContext &
|
||||
ClangASTContext &
|
||||
SymbolFile::GetClangASTContext ()
|
||||
{
|
||||
return m_obj_file->GetModule()->GetClangASTContext();
|
||||
}
|
||||
|
||||
TypeSystem *
|
||||
SymbolFile::GetTypeSystemForLanguage (lldb::LanguageType language)
|
||||
{
|
||||
return m_obj_file->GetModule()->GetTypeSystemForLanguage (language);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user