| 653 | /// Source Map structure for parsing .map files |
| 654 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 655 | pub struct SourceMap { |
| 656 | pub version: Option<u32>, |
| 657 | pub file: Option<String>, |
| 658 | pub sources: Vec<String>, |
| 659 | pub names: Vec<String>, |
| 660 | #[serde(rename = "sourcesContent")] |
| 661 | pub sources_content: Option<Vec<String>>, |
| 662 | } |
| 663 | |
| 664 | /// Information extracted from source maps |
| 665 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected