(value: &SceneValue, key: &str, line_no: usize)
| 396 | return Err(format!( |
| 397 | "line {}: bone name cannot be empty in `{}`", |
| 398 | line_no, key |
| 399 | )); |
| 400 | } |
| 401 | AnimationBoneSelector::Name(stripped.to_string().into()) |
| 402 | }; |
| 403 | |
| 404 | Ok(Some((selector, property))) |
| 405 | } |
no test coverage detected