llvm/lldb/source/Plugins/ExpressionParser/Clang/NameSearchContext.cpp

//===-- NameSearchContext.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 "NameSearchContext.h"
#include "ClangUtil.h"
#include "lldb/Utility/LLDBLog.h"

usingnamespaceclang;
usingnamespacelldb_private;

clang::NamedDecl *NameSearchContext::AddVarDecl(const CompilerType &type) {}

clang::NamedDecl *NameSearchContext::AddFunDecl(const CompilerType &type,
                                                bool extern_c) {}

clang::NamedDecl *NameSearchContext::AddGenericFunDecl() {}

clang::NamedDecl *
NameSearchContext::AddTypeDecl(const CompilerType &clang_type) {}

void NameSearchContext::AddLookupResult(clang::DeclContextLookupResult result) {}

void NameSearchContext::AddNamedDecl(clang::NamedDecl *decl) {}