(path: &str)
| 163 | |
| 164 | fn fetch_reference_value(json: &Value, path: &Option<String>) -> Result<Value, ResolverError> { |
| 165 | match path { |
| 166 | Some(p) => { |
| 167 | let parts = p.split(PATH_SEP); |
| 168 | let mut part = json; |
| 169 | for p in parts.filter(|p| !p.trim().is_empty()) { |
| 170 | if let Value::Object(o) = part { |
no outgoing calls
no test coverage detected