(sources: &mut Vec<String>, source: &str)
| 4783 | } |
| 4784 | |
| 4785 | fn push_unique_source(sources: &mut Vec<String>, source: &str) { |
| 4786 | if !sources.iter().any(|value| value == source) { |
| 4787 | sources.push(source.to_owned()); |
| 4788 | } |
| 4789 | } |
| 4790 | |
| 4791 | fn available_sources_for_session(session: &InspectorSession) -> Vec<String> { |
| 4792 | let mut sources = Vec::new(); |
no outgoing calls
no test coverage detected