//===- CoroutineStmtBuilder.h - Implicit coroutine stmt builder -*- C++ -*-===// // // 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 //===----------------------------------------------------------------------===// // // This file defines CoroutineStmtBuilder, a class for building the implicit // statements required for building a coroutine body. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_SEMA_COROUTINESTMTBUILDER_H #define LLVM_CLANG_LIB_SEMA_COROUTINESTMTBUILDER_H #include "clang/AST/Decl.h" #include "clang/AST/ExprCXX.h" #include "clang/AST/StmtCXX.h" #include "clang/Lex/Preprocessor.h" #include "clang/Sema/SemaInternal.h" namespace clang { class CoroutineStmtBuilder : public CoroutineBodyStmt::CtorArgs { … }; } // end namespace clang #endif // LLVM_CLANG_LIB_SEMA_COROUTINESTMTBUILDER_H