llvm/llvm/lib/TextAPI/RecordVisitor.cpp

//===- RecordVisitor.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
//
//===----------------------------------------------------------------------===//
///
/// Implements the TAPI Record Visitor.
///
//===----------------------------------------------------------------------===//

#include "llvm/TextAPI/RecordVisitor.h"

usingnamespacellvm;
usingnamespacellvm::MachO;

RecordVisitor::~RecordVisitor() {}
void RecordVisitor::visitObjCInterface(const ObjCInterfaceRecord &) {}
void RecordVisitor::visitObjCCategory(const ObjCCategoryRecord &) {}

static bool shouldSkipRecord(const Record &R, const bool RecordUndefs) {}

void SymbolConverter::visitGlobal(const GlobalRecord &GR) {}

void SymbolConverter::addIVars(const ArrayRef<ObjCIVarRecord *> IVars,
                               StringRef ContainerName) {}

void SymbolConverter::visitObjCInterface(const ObjCInterfaceRecord &ObjCR) {}

void SymbolConverter::visitObjCCategory(const ObjCCategoryRecord &Cat) {}