Struct move_bytecode_source_map::mapping::SourceMapping
source · [−]pub struct SourceMapping<'view> {
pub bytecode: BinaryIndexedView<'view>,
pub source_map: SourceMap,
pub source_code: Option<(String, String)>,
pub marks: Option<MarkedSourceMapping>,
}
Expand description
An object that associates source code with compiled bytecode and source map.
Fields
bytecode: BinaryIndexedView<'view>
source_map: SourceMap
source_code: Option<(String, String)>
marks: Option<MarkedSourceMapping>
Implementations
sourceimpl<'view> SourceMapping<'view>
impl<'view> SourceMapping<'view>
pub fn new(source_map: SourceMap, bytecode: BinaryIndexedView<'view>) -> Self
pub fn new_from_view(
bytecode: BinaryIndexedView<'view>,
default_loc: Loc
) -> Result<Self>
pub fn with_marks(&mut self, marks: MarkedSourceMapping)
pub fn with_source_code(&mut self, source_code: (String, String))
Trait Implementations
Auto Trait Implementations
impl<'view> RefUnwindSafe for SourceMapping<'view>
impl<'view> Send for SourceMapping<'view>
impl<'view> Sync for SourceMapping<'view>
impl<'view> Unpin for SourceMapping<'view>
impl<'view> UnwindSafe for SourceMapping<'view>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more