Type Alias SyntaxToken

Source
pub type SyntaxToken = SyntaxToken<RustLanguage>;

Aliased Type§

struct SyntaxToken { /* private fields */ }

Implementations

§

impl<L> SyntaxToken<L>
where L: Language,

pub fn replace_with(&self, new_token: GreenToken) -> GreenNode

Returns a green tree, equal to the green tree this token belongs two, except with this token substitute. The complexity of operation is proportional to the depth of the tree

pub fn kind(&self) -> <L as Language>::Kind

pub fn text_range(&self) -> TextRange

pub fn index(&self) -> usize

pub fn text(&self) -> &str

pub fn green(&self) -> &GreenTokenData

pub fn parent(&self) -> Option<SyntaxNode<L>>

pub fn ancestors(&self) -> impl Iterator<Item = SyntaxNode<L>>

👎Deprecated: use SyntaxToken::parent_ancestors instead

Iterator over all the ancestors of this token excluding itself.

pub fn parent_ancestors(&self) -> impl Iterator<Item = SyntaxNode<L>>

Iterator over all the ancestors of this token excluding itself.

pub fn next_sibling_or_token( &self, ) -> Option<NodeOrToken<SyntaxNode<L>, SyntaxToken<L>>>

pub fn prev_sibling_or_token( &self, ) -> Option<NodeOrToken<SyntaxNode<L>, SyntaxToken<L>>>

pub fn siblings_with_tokens( &self, direction: Direction, ) -> impl Iterator<Item = NodeOrToken<SyntaxNode<L>, SyntaxToken<L>>>

pub fn next_token(&self) -> Option<SyntaxToken<L>>

Next token in the tree (i.e, not necessary a sibling).

pub fn prev_token(&self) -> Option<SyntaxToken<L>>

Previous token in the tree (i.e, not necessary a sibling).

pub fn detach(&self)

Trait Implementations§

Source§

impl Element for SyntaxToken

Source§

impl Element for SyntaxToken

§

impl<L> Clone for SyntaxToken<L>
where L: Clone + Language,

§

fn clone(&self) -> SyntaxToken<L>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<L> Debug for SyntaxToken<L>
where L: Language,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<L> Display for SyntaxToken<L>
where L: Language,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<L> From<SyntaxToken> for SyntaxToken<L>
where L: Language,

§

fn from(raw: SyntaxToken) -> SyntaxToken<L>

Converts to this type from the input type.
§

impl<L> Hash for SyntaxToken<L>
where L: Hash + Language,

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl<L> PartialEq for SyntaxToken<L>
where L: PartialEq + Language,

§

fn eq(&self, other: &SyntaxToken<L>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<L> Eq for SyntaxToken<L>
where L: Eq + Language,

§

impl<L> StructuralPartialEq for SyntaxToken<L>
where L: Language,