Home | History | Annotate | Download | only in AST

Lines Matching defs:Promise

302     Promise,       ///< The promise statement.
314 CoroutineBodyStmt(Stmt *Body, Stmt *Promise, Stmt *InitSuspend,
319 SubStmts[CoroutineBodyStmt::Promise] = Promise;
335 Stmt *getPromiseDeclStmt() const { return SubStmts[SubStmt::Promise]; }
370 /// This statament models the initialization of the coroutine promise
376 /// <promise>.return_value(<operand>)
377 /// <promise>.return_void()
378 /// which we name the "promise call".
399 /// \brief Retrieve the promise call that results from this 'co_return'