180814287SRaphael Isemann //===-- ASTUtils.cpp ------------------------------------------------------===//
26c0bbfc0SRaphael Isemann //
36c0bbfc0SRaphael Isemann // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
46c0bbfc0SRaphael Isemann // See https://llvm.org/LICENSE.txt for license information.
56c0bbfc0SRaphael Isemann // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66c0bbfc0SRaphael Isemann //
76c0bbfc0SRaphael Isemann //===----------------------------------------------------------------------===//
86c0bbfc0SRaphael Isemann 
96c0bbfc0SRaphael Isemann #include "ASTUtils.h"
106c0bbfc0SRaphael Isemann 
11*fd2433e1SJonas Devlieghere lldb_private::ExternalASTSourceWrapper::~ExternalASTSourceWrapper() = default;
126c0bbfc0SRaphael Isemann 
PrintStats()136c0bbfc0SRaphael Isemann void lldb_private::ExternalASTSourceWrapper::PrintStats() {
146c0bbfc0SRaphael Isemann   m_Source->PrintStats();
156c0bbfc0SRaphael Isemann }
166c0bbfc0SRaphael Isemann 
17*fd2433e1SJonas Devlieghere lldb_private::ASTConsumerForwarder::~ASTConsumerForwarder() = default;
186c0bbfc0SRaphael Isemann 
PrintStats()196c0bbfc0SRaphael Isemann void lldb_private::ASTConsumerForwarder::PrintStats() { m_c->PrintStats(); }
206c0bbfc0SRaphael Isemann 
21*fd2433e1SJonas Devlieghere lldb_private::SemaSourceWithPriorities::~SemaSourceWithPriorities() = default;
226c0bbfc0SRaphael Isemann 
PrintStats()236c0bbfc0SRaphael Isemann void lldb_private::SemaSourceWithPriorities::PrintStats() {
246c0bbfc0SRaphael Isemann   for (size_t i = 0; i < Sources.size(); ++i)
256c0bbfc0SRaphael Isemann     Sources[i]->PrintStats();
266c0bbfc0SRaphael Isemann }
27