pub struct SourceTextInfo { /* private fields */ }
Expand description
Stores the source text along with other data such as where all the lines occur in the text.
Note: This struct is cheap to clone.
Implementations§
Source§impl SourceTextInfo
impl SourceTextInfo
Sourcepub fn new_with_pos(start_pos: SourcePos, text: Arc<str>) -> Self
pub fn new_with_pos(start_pos: SourcePos, text: Arc<str>) -> Self
Creates a new SourceTextInfo
from the provided source start position
and source text.
Note: When bundling swc will keep increasing the start position for each source file.
Sourcepub fn new_with_indent_width(
start_pos: SourcePos,
text: Arc<str>,
indent_width: usize,
) -> Self
pub fn new_with_indent_width( start_pos: SourcePos, text: Arc<str>, indent_width: usize, ) -> Self
Creates a new SourceTextInfo
from the provided start position,
source text, and indentation width.
The indentation width determines the number of columns to use
when going over a tab character. For example, an indent width
of 2 will mean each tab character will represent 2 columns.
The default indentation width used in the other methods is 2
to match the default indentation used by deno fmt
.
Sourcepub fn from_string(text: String) -> Self
pub fn from_string(text: String) -> Self
Creates a new SourceTextInfo
from the provided source text.
Generally, prefer using SourceTextInfo::new
to provide a
string already in an std::sync::Arc
.
Sourcepub fn as_string_input(&self) -> StringInput<'_>
pub fn as_string_input(&self) -> StringInput<'_>
Gets an swc StringInput
for this text information that can be
used with parsing.
Sourcepub fn range(&self) -> SourceRange<StartSourcePos>
pub fn range(&self) -> SourceRange<StartSourcePos>
Gets the range—start and end byte position—of the source text.
Sourcepub fn lines_count(&self) -> usize
pub fn lines_count(&self) -> usize
Gets the number of lines in the source text.
Sourcepub fn line_index(&self, pos: SourcePos) -> usize
pub fn line_index(&self, pos: SourcePos) -> usize
Gets the 0-indexed line index at the provided byte position.
Note that this will panic when providing a byte position outside the range of the source text.
Sourcepub fn line_start(&self, line_index: usize) -> SourcePos
pub fn line_start(&self, line_index: usize) -> SourcePos
Gets the line start byte position of the provided 0-indexed line index.
Note that this will panic if providing a line index outside the bounds of the number of lines.
Sourcepub fn line_end(&self, line_index: usize) -> SourcePos
pub fn line_end(&self, line_index: usize) -> SourcePos
Gets the line end byte position of the provided 0-indexed line index.
Note that this will panic if providing a line index outside the bounds of the number of lines.
Sourcepub fn line_and_column_index(&self, pos: SourcePos) -> LineAndColumnIndex
pub fn line_and_column_index(&self, pos: SourcePos) -> LineAndColumnIndex
Gets the 0-indexed line and column index of the provided byte position.
Note that this will panic when providing a byte position outside the range of the source text.
Sourcepub fn line_and_column_display(&self, pos: SourcePos) -> LineAndColumnDisplay
pub fn line_and_column_display(&self, pos: SourcePos) -> LineAndColumnDisplay
Gets the 1-indexed line and column index of the provided byte position taking into account the default indentation width.
Note that this will panic when providing a byte position outside the range of the source text.
Sourcepub fn line_and_column_display_with_indent_width(
&self,
pos: SourcePos,
indent_width: usize,
) -> LineAndColumnDisplay
pub fn line_and_column_display_with_indent_width( &self, pos: SourcePos, indent_width: usize, ) -> LineAndColumnDisplay
Gets the 1-indexed line and column index of the provided byte position with a custom indentation width.
Note that this will panic when providing a byte position outside the range of the source text.
Sourcepub fn loc_to_source_pos(
&self,
line_and_column_index: LineAndColumnIndex,
) -> SourcePos
pub fn loc_to_source_pos( &self, line_and_column_index: LineAndColumnIndex, ) -> SourcePos
Gets the source position of the provided line and column index.
Note that this will panic if providing a line index outside the bounds of the number of lines, but will clip the the line end byte index when exceeding the line length.
Sourcepub fn line_text(&self, line_index: usize) -> &str
pub fn line_text(&self, line_index: usize) -> &str
Gets a reference to the text slice of the line at the provided 0-based index.
Note that this will panic if providing a line index outside the bounds of the number of lines.
Sourcepub fn range_text(&self, range: &SourceRange) -> &str
pub fn range_text(&self, range: &SourceRange) -> &str
Gets the source text located within the provided range.
Trait Implementations§
Source§impl Clone for SourceTextInfo
impl Clone for SourceTextInfo
Source§fn clone(&self) -> SourceTextInfo
fn clone(&self) -> SourceTextInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SourceTextInfo
impl Debug for SourceTextInfo
Source§impl<'a> SourceTextInfoProvider<'a> for &'a SourceTextInfo
impl<'a> SourceTextInfoProvider<'a> for &'a SourceTextInfo
fn text_info(&self) -> &'a SourceTextInfo
Auto Trait Implementations§
impl Freeze for SourceTextInfo
impl RefUnwindSafe for SourceTextInfo
impl Send for SourceTextInfo
impl Sync for SourceTextInfo
impl Unpin for SourceTextInfo
impl UnwindSafe for SourceTextInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.