| 933 | } |
| 934 | |
| 935 | void DirectoryObject::AddBacktrace(Json::Value& object, |
| 936 | cmListFileBacktrace const& bt) |
| 937 | { |
| 938 | if (JBTIndex backtrace = this->Backtraces.Add(bt)) { |
| 939 | object["backtrace"] = backtrace.Index; |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | Json::Value DirectoryObject::DumpPaths() |
| 944 | { |
no test coverage detected