llvm/clang/lib/AST/ASTImporterLookupTable.cpp

//===- ASTImporterLookupTable.cpp - ASTImporter specific lookup -----------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
//  This file defines the ASTImporterLookupTable class which implements a
//  lookup procedure for the import mechanism.
//
//===----------------------------------------------------------------------===//

#include "clang/AST/ASTImporterLookupTable.h"
#include "clang/AST/Decl.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include "llvm/Support/FormatVariadic.h"

namespace clang {

namespace {

struct Builder : RecursiveASTVisitor<Builder> {};

} // anonymous namespace

ASTImporterLookupTable::ASTImporterLookupTable(TranslationUnitDecl &TU) {}

void ASTImporterLookupTable::add(DeclContext *DC, NamedDecl *ND) {}

void ASTImporterLookupTable::remove(DeclContext *DC, NamedDecl *ND) {}

void ASTImporterLookupTable::add(NamedDecl *ND) {}

void ASTImporterLookupTable::remove(NamedDecl *ND) {}

void ASTImporterLookupTable::update(NamedDecl *ND, DeclContext *OldDC) {}

void ASTImporterLookupTable::updateForced(NamedDecl *ND, DeclContext *OldDC) {}

ASTImporterLookupTable::LookupResult
ASTImporterLookupTable::lookup(DeclContext *DC, DeclarationName Name) const {}

bool ASTImporterLookupTable::contains(DeclContext *DC, NamedDecl *ND) const {}

void ASTImporterLookupTable::dump(DeclContext *DC) const {}

void ASTImporterLookupTable::dump() const {}

} // namespace clang