(path: &str)
| 24 | } |
| 25 | |
| 26 | pub fn rel_label(path: &str) -> String { |
| 27 | path.trim_start_matches("res://") |
| 28 | .trim_end_matches('/') |
| 29 | .to_string() |
| 30 | } |
| 31 | |
| 32 | pub fn kind_label(path: &str) -> &'static str { |
| 33 | if path.ends_with('/') { |
no outgoing calls
no test coverage detected