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

//===-- ClangUtil.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
//
// A collection of helper methods and data structures for manipulating clang
// types and decls.
//===----------------------------------------------------------------------===//

#include "Plugins/ExpressionParser/Clang/ClangUtil.h"
#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"

usingnamespaceclang;
usingnamespacelldb_private;

bool ClangUtil::IsClangType(const CompilerType &ct) {}

clang::Decl *ClangUtil::GetDecl(const CompilerDecl &decl) {}

QualType ClangUtil::GetQualType(const CompilerType &ct) {}

QualType ClangUtil::GetCanonicalQualType(const CompilerType &ct) {}

CompilerType ClangUtil::RemoveFastQualifiers(const CompilerType &ct) {}

clang::TagDecl *ClangUtil::GetAsTagDecl(const CompilerType &type) {}

std::string ClangUtil::DumpDecl(const clang::Decl *d) {}

std::string ClangUtil::ToString(const clang::Type *t) {}

std::string ClangUtil::ToString(const CompilerType &c) {}