Struct swc_common::comments::SingleThreadedComments
source · [−]pub struct SingleThreadedComments { /* private fields */ }
Expand description
Single-threaded storage for comments.
Implementations
sourceimpl SingleThreadedComments
impl SingleThreadedComments
sourcepub fn from_leading_and_trailing(
leading: SingleThreadedCommentsMap,
trailing: SingleThreadedCommentsMap
) -> Self
pub fn from_leading_and_trailing(
leading: SingleThreadedCommentsMap,
trailing: SingleThreadedCommentsMap
) -> Self
Creates a new SingleThreadedComments
from the provided leading and
trailing.
sourcepub fn take_all(self) -> (SingleThreadedCommentsMap, SingleThreadedCommentsMap)
pub fn take_all(self) -> (SingleThreadedCommentsMap, SingleThreadedCommentsMap)
Takes all the comments as (leading, trailing).
sourcepub fn borrow_all(
&self
) -> (Ref<'_, SingleThreadedCommentsMapInner>, Ref<'_, SingleThreadedCommentsMapInner>)
pub fn borrow_all(
&self
) -> (Ref<'_, SingleThreadedCommentsMapInner>, Ref<'_, SingleThreadedCommentsMapInner>)
Borrows all the comments as (leading, trailing).
sourcepub fn borrow_all_mut(
&self
) -> (RefMut<'_, SingleThreadedCommentsMapInner>, RefMut<'_, SingleThreadedCommentsMapInner>)
pub fn borrow_all_mut(
&self
) -> (RefMut<'_, SingleThreadedCommentsMapInner>, RefMut<'_, SingleThreadedCommentsMapInner>)
Borrows all the comments as (leading, trailing).
pub fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere
F: FnOnce(&[Comment]) -> Ret,
pub fn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere
F: FnOnce(&[Comment]) -> Ret,
Trait Implementations
sourceimpl Clone for SingleThreadedComments
impl Clone for SingleThreadedComments
sourcefn clone(&self) -> SingleThreadedComments
fn clone(&self) -> SingleThreadedComments
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Comments for SingleThreadedComments
impl Comments for SingleThreadedComments
fn add_leading(&self, pos: BytePos, cmt: Comment)
fn add_leading_comments(&self, pos: BytePos, comments: Vec<Comment>)
fn has_leading(&self, pos: BytePos) -> bool
fn move_leading(&self, from: BytePos, to: BytePos)
fn take_leading(&self, pos: BytePos) -> Option<Vec<Comment>>
fn get_leading(&self, pos: BytePos) -> Option<Vec<Comment>>
fn add_trailing(&self, pos: BytePos, cmt: Comment)
fn add_trailing_comments(&self, pos: BytePos, comments: Vec<Comment>)
fn has_trailing(&self, pos: BytePos) -> bool
fn move_trailing(&self, from: BytePos, to: BytePos)
fn take_trailing(&self, pos: BytePos) -> Option<Vec<Comment>>
fn get_trailing(&self, pos: BytePos) -> Option<Vec<Comment>>
fn add_pure_comment(&self, pos: BytePos)
fn with_leading<F, Ret>(&self, pos: BytePos, f: F) -> Retwhere
Self: Sized,
F: FnOnce(&[Comment]) -> Ret,
fn with_trailing<F, Ret>(&self, pos: BytePos, f: F) -> Retwhere
Self: Sized,
F: FnOnce(&[Comment]) -> Ret,
sourceimpl Debug for SingleThreadedComments
impl Debug for SingleThreadedComments
sourceimpl Default for SingleThreadedComments
impl Default for SingleThreadedComments
sourcefn default() -> SingleThreadedComments
fn default() -> SingleThreadedComments
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for SingleThreadedComments
impl !Send for SingleThreadedComments
impl !Sync for SingleThreadedComments
impl Unpin for SingleThreadedComments
impl !UnwindSafe for SingleThreadedComments
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
sourceimpl<C> CommentsExt for Cwhere
C: Comments,
impl<C> CommentsExt for Cwhere
C: Comments,
sourcefn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere
F: FnOnce(&[Comment]) -> Ret,
fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere
F: FnOnce(&[Comment]) -> Ret,
👎Deprecated since 0.13.5:
helper methods are merged into Comments itself
sourcefn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere
F: FnOnce(&[Comment]) -> Ret,
fn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere
F: FnOnce(&[Comment]) -> Ret,
👎Deprecated since 0.13.5:
helper methods are merged into Comments itself