| 2041 | } |
| 2042 | |
| 2043 | Json::Value Target::DumpCompileGroups() |
| 2044 | { |
| 2045 | Json::Value compileGroups = Json::arrayValue; |
| 2046 | for (auto& cg : this->CompileGroups) { |
| 2047 | compileGroups.append(this->DumpCompileGroup(cg)); |
| 2048 | } |
| 2049 | return compileGroups; |
| 2050 | } |
| 2051 | |
| 2052 | Json::Value Target::DumpCompileGroup(CompileGroup& cg) |
| 2053 | { |
no test coverage detected