| 94 | //----------------------------------------------------------------------------- |
| 95 | |
| 96 | static std::string BuildSuspendVarName(const OpaqueValueExpr* stmt) |
| 97 | { |
| 98 | return BuildInternalVarName( |
| 99 | MakeLineColumnName(GetGlobalAST().getSourceManager(), stmt->getSourceExpr()->getBeginLoc(), "suspend_"sv)); |
| 100 | } |
| 101 | //----------------------------------------------------------------------------- |
| 102 | |
| 103 | /// \brief Find a \c SuspendsExpr's in a coroutine body statement for early transformation. |
no test coverage detected