llvm/lldb/source/Symbol/CompilerDeclContext.cpp

//===-- CompilerDeclContext.cpp -------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Symbol/CompilerDeclContext.h"
#include "lldb/Symbol/CompilerDecl.h"
#include "lldb/Symbol/TypeSystem.h"
#include <vector>

usingnamespacelldb_private;

std::vector<CompilerDecl>
CompilerDeclContext::FindDeclByName(ConstString name,
                                    const bool ignore_using_decls) {}

ConstString CompilerDeclContext::GetName() const {}

ConstString CompilerDeclContext::GetScopeQualifiedName() const {}

bool CompilerDeclContext::IsClassMethod() {}

lldb::LanguageType CompilerDeclContext::GetLanguage() {}

bool CompilerDeclContext::IsContainedInLookup(CompilerDeclContext other) const {}

std::vector<lldb_private::CompilerContext>
CompilerDeclContext::GetCompilerContext() const {}

bool lldb_private::operator==(const lldb_private::CompilerDeclContext &lhs,
                              const lldb_private::CompilerDeclContext &rhs) {}

bool lldb_private::operator!=(const lldb_private::CompilerDeclContext &lhs,
                              const lldb_private::CompilerDeclContext &rhs) {}