(line: &str)
| 32 | } |
| 33 | |
| 34 | fn split_key_value(line: &str) -> Option<(&str, &str)> { |
| 35 | let (k, v) = line.split_once('=')?; |
| 36 | Some((k.trim(), v.trim())) |
| 37 | } |
| 38 | |
| 39 | fn strip_comment(line: &str) -> &str { |
| 40 | // Comment markers inside quoted strings (e.g. `"res://path"`) are content. |
no outgoing calls
no test coverage detected