//===--- CXX.cpp - Define public interfaces for C++ grammar ---------------===// // // 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 // //===----------------------------------------------------------------------===// #include "clang-pseudo/cxx/CXX.h" #include "clang-pseudo/Forest.h" #include "clang-pseudo/Language.h" #include "clang-pseudo/grammar/Grammar.h" #include "clang-pseudo/grammar/LRTable.h" #include "clang/Basic/CharInfo.h" #include "clang/Basic/TokenKinds.h" #include "llvm/ADT/StringSwitch.h" #include "llvm/Support/Debug.h" #include <utility> #define DEBUG_TYPE … namespace clang { namespace pseudo { namespace cxx { namespace … // namespace const Language &getLanguage() { … } } // namespace cxx } // namespace pseudo } // namespace clang