(value: &str)
| 3300 | } |
| 3301 | |
| 3302 | fn parse_agent_ref(value: &str) -> Option<usize> { |
| 3303 | let digits = value.trim().strip_prefix("@e")?; |
| 3304 | let index = digits.parse::<usize>().ok()?; |
| 3305 | (index > 0).then_some(index - 1) |
| 3306 | } |
| 3307 | |
| 3308 | fn project_device_selection_for_selector( |
| 3309 | selector: &str, |
no outgoing calls
no test coverage detected