(command: &str)
| 618 | } |
| 619 | |
| 620 | fn process_role(command: &str) -> String { |
| 621 | if command.contains(".appex/") { |
| 622 | "extension".to_owned() |
| 623 | } else if command.contains("WebContent") { |
| 624 | "web-content".to_owned() |
| 625 | } else if command.contains(".app/") { |
| 626 | "app".to_owned() |
| 627 | } else { |
| 628 | "helper".to_owned() |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | fn process_name_from_command(command: &str) -> String { |
| 633 | let executable = command |
no outgoing calls
no test coverage detected