| 1974 | } |
| 1975 | |
| 1976 | Json::Value Target::DumpInclude(CompileData::IncludeEntry const& inc) |
| 1977 | { |
| 1978 | Json::Value include = Json::objectValue; |
| 1979 | include["path"] = inc.Path.Value; |
| 1980 | if (inc.IsSystem) { |
| 1981 | include["isSystem"] = true; |
| 1982 | } |
| 1983 | this->AddBacktrace(include, inc.Path.Backtrace); |
| 1984 | return include; |
| 1985 | } |
| 1986 | |
| 1987 | Json::Value Target::DumpFramework(CompileData::IncludeEntry const& fw) |
| 1988 | { |
no test coverage detected