swc_ecma_ast

Trait SourceMapperExt

Source
pub trait SourceMapperExt {
    // Required method
    fn get_code_map(&self) -> &dyn SourceMapper;

    // Provided methods
    fn is_on_same_line(&self, _lo: BytePos, _hi: BytePos) -> bool { ... }
    fn should_write_separating_line_terminator<P: Spanned, N: Spanned>(
        &self,
        prev: Option<P>,
        next: Option<N>,
        format: ListFormat,
    ) -> bool { ... }
    fn should_write_leading_line_terminator<N: Spanned>(
        &self,
        parent_node: Span,
        children: &[N],
        format: ListFormat,
    ) -> bool { ... }
    fn should_write_closing_line_terminator<N: Spanned>(
        &self,
        parent_node: Span,
        children: &[N],
        format: ListFormat,
    ) -> bool { ... }
}

Required Methods§

Provided Methods§

Source

fn is_on_same_line(&self, _lo: BytePos, _hi: BytePos) -> bool

Source

fn should_write_separating_line_terminator<P: Spanned, N: Spanned>( &self, prev: Option<P>, next: Option<N>, format: ListFormat, ) -> bool

Source

fn should_write_leading_line_terminator<N: Spanned>( &self, parent_node: Span, children: &[N], format: ListFormat, ) -> bool

Source

fn should_write_closing_line_terminator<N: Spanned>( &self, parent_node: Span, children: &[N], format: ListFormat, ) -> bool

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl SourceMapperExt for SourceMap

Source§

impl SourceMapperExt for Rc<SourceMap>

Source§

impl SourceMapperExt for Rc<SourceMapperDyn>

Source§

impl SourceMapperExt for Arc<SourceMap>

Source§

impl SourceMapperExt for Arc<SourceMapperDyn>

Source§

impl SourceMapperExt for dyn SourceMapper

Implementors§