Path: blob/main/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.cpp
39648 views
//===-- ASTUtils.cpp ------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#include "ASTUtils.h"910lldb_private::ExternalASTSourceWrapper::~ExternalASTSourceWrapper() = default;1112void lldb_private::ExternalASTSourceWrapper::PrintStats() {13m_Source->PrintStats();14}1516lldb_private::ASTConsumerForwarder::~ASTConsumerForwarder() = default;1718void lldb_private::ASTConsumerForwarder::PrintStats() { m_c->PrintStats(); }1920lldb_private::SemaSourceWithPriorities::~SemaSourceWithPriorities() = default;2122void lldb_private::SemaSourceWithPriorities::PrintStats() {23for (size_t i = 0; i < Sources.size(); ++i)24Sources[i]->PrintStats();25}262728