| 156 | } |
| 157 | |
| 158 | void JsonAssetBase::GetReferences(const StringAnsiView& json, Array<Guid>& assets) |
| 159 | { |
| 160 | ISerializable::SerializeDocument document; |
| 161 | document.Parse(json.Get(), json.Length()); |
| 162 | if (document.HasParseError()) |
| 163 | return; |
| 164 | Array<String> files; |
| 165 | FindIds(document, assets, files); |
| 166 | } |
| 167 | |
| 168 | bool JsonAssetBase::Save(const StringView& path) |
| 169 | { |
nothing calls this directly
no test coverage detected