| 73 | //----------------------------------------------------------------------------- |
| 74 | |
| 75 | FieldDecl* CoroutinesCodeGenerator::AddField(std::string_view name, QualType type) |
| 76 | { |
| 77 | return ::clang::insights::AddField(mASTData, name, type); |
| 78 | } |
| 79 | //----------------------------------------------------------------------------- |
| 80 | |
| 81 | static auto* CreateCoroFunctionDecl(std::string funcName, QualType type) |
nothing calls this directly
no test coverage detected