(snapshot: Value, available_sources: &[String])
| 4867 | } |
| 4868 | |
| 4869 | fn attach_available_sources(snapshot: Value, available_sources: &[String]) -> Value { |
| 4870 | attach_tree_metadata(snapshot, available_sources, None) |
| 4871 | } |
| 4872 | |
| 4873 | fn trim_tree_depth(mut snapshot: Value, max_depth: Option<usize>) -> Value { |
| 4874 | let Some(max_depth) = max_depth else { |
no test coverage detected