MCPcopy Create free account
hub / github.com/KingOfBugbounty/enumrust / SourceMap

Class SourceMap

src/js_crawler.rs:655–662  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

653/// Source Map structure for parsing .map files
654#[derive(Debug, Clone, Serialize, Deserialize)]
655pub 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)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected