(s: &str)
| 162 | } |
| 163 | |
| 164 | fn is_url(s: &str) -> bool { |
| 165 | s.starts_with("http://") || s.starts_with("https://") |
| 166 | } |
| 167 | |
| 168 | fn instruction_source_from_filename(name: &str) -> InstructionSource { |
| 169 | match name { |
no outgoing calls
no test coverage detected