| 123 | |
| 124 | #[derive(Debug, Clone)] |
| 125 | pub struct JavaScriptFile { |
| 126 | pub path: PathBuf, |
| 127 | pub content: String, |
| 128 | pub is_background: bool, |
| 129 | pub is_content_script: bool, |
| 130 | pub chrome_api_calls: Vec<ChromeApiCall>, |
| 131 | } |
| 132 | |
| 133 | #[derive(Debug, Clone)] |
| 134 | pub struct ChromeApiCall { |
nothing calls this directly
no outgoing calls
no test coverage detected