pub trait SourceMapGetter {
    fn get_source_map(&self, file_name: &str) -> Option<Vec<u8>>;
    fn get_source_line(
        &self,
        file_name: &str,
        line_number: usize
    ) -> Option<String>; }

Required Methods

Returns the raw source map file.

Implementations on Foreign Types

Implementors