pub trait SourceMapGenConfig {
    fn file_name_to_source(&self, f: &FileName) -> String;

    fn name_for_bytepos(&self, _bpos: BytePos) -> Option<&str> { ... }
    fn inline_sources_content(&self, f: &FileName) -> bool { ... }
    fn emit_columns(&self, _f: &FileName) -> bool { ... }
    fn skip(&self, _f: &FileName) -> bool { ... }
}

Required Methods

Returns

File path to used in SourceMap.sources.

This should not return content of the file.

Provided Methods

You can override this to control sourceContents.

You can define whether to emit sourcemap with columns or not

Implementations on Foreign Types

Implementors