ResolvedToken

Struct ResolvedToken 

Source
pub struct ResolvedToken<S: Syntax, D: 'static = ()> { /* private fields */ }
Expand description

Syntax tree token that is guaranteed to belong to a tree that contains an associated Resolver.

§See also

SyntaxToken

Implementations§

Source§

impl<S: Syntax, D> ResolvedToken<S, D>

Source

pub fn syntax(&self) -> &SyntaxToken<S, D>

Returns this token as a SyntaxToken.

Source§

impl<S: Syntax, D> ResolvedToken<S, D>

Source

pub fn text(&self) -> &str

Uses the resolver associated with this tree to return the source text of this token.

Source§

impl<S: Syntax, D> ResolvedToken<S, D>

Source

pub fn resolver(&self) -> &StdArc<dyn Resolver<TokenKey>>

Returns the Resolver associated with this tree.

Source

pub fn try_resolved(&self) -> Option<&ResolvedToken<S, D>>

Always returns Some(self).

This method mostly exists to allow the convenience of being agnostic over SyntaxToken vs ResolvedToken.

Source

pub fn resolved(&self) -> &ResolvedToken<S, D>

Always returns self.

This method mostly exists to allow the convenience of being agnostic over SyntaxToken vs ResolvedToken.

Source

pub fn parent(&self) -> &ResolvedNode<S, D>

The parent node of this token.

Source

pub fn ancestors(&self) -> impl Iterator<Item = &ResolvedNode<S, D>>

Returns an iterator along the chain of parents of this token.

Source

pub fn next_sibling_or_token(&self) -> Option<ResolvedElementRef<'_, S, D>>

The tree element to the right of this one, i.e. the next child of this token’s parent after this token.

Source

pub fn prev_sibling_or_token(&self) -> Option<ResolvedElementRef<'_, S, D>>

The tree element to the left of this one, i.e. the previous child of this token’s parent after this token.

Source

pub fn siblings_with_tokens( &self, direction: Direction, ) -> impl Iterator<Item = ResolvedElementRef<'_, S, D>>

Returns an iterator over all siblings of this token in the given direction, i.e. all of this token’s parent’s children from this token on to the left or the right. The first item in the iterator will always be this token.

Source

pub fn next_token(&self) -> Option<&ResolvedToken<S, D>>

Returns the next token in the tree. This is not necessary a direct sibling of this token, but will always be further right in the tree.

Source

pub fn prev_token(&self) -> Option<&ResolvedToken<S, D>>

Returns the previous token in the tree. This is not necessary a direct sibling of this token, but will always be further left in the tree.

Methods from Deref<Target = SyntaxToken<S, D>>§

Source

pub fn write_debug<R>(&self, resolver: &R, target: &mut impl Write) -> Result
where R: Resolver<TokenKey> + ?Sized,

Writes this token’s Debug representation into the given target.

Source

pub fn debug<R>(&self, resolver: &R) -> String
where R: Resolver<TokenKey> + ?Sized,

Returns this token’s Debug representation as a string.

To avoid allocating for every token, see write_debug.

Source

pub fn write_display<R>(&self, resolver: &R, target: &mut impl Write) -> Result
where R: Resolver<TokenKey> + ?Sized,

Writes this token’s Display representation into the given target.

Source

pub fn display<R>(&self, resolver: &R) -> String
where R: Resolver<TokenKey> + ?Sized,

Returns this token’s Display representation as a string.

To avoid allocating for every token, see write_display.

Source

pub fn resolver(&self) -> Option<&StdArc<dyn Resolver<TokenKey>>>

If there is a resolver associated with this tree, returns it.

Source

pub fn try_resolved(&self) -> Option<&ResolvedToken<S, D>>

Turns this token into a ResolvedToken, but only if there is a resolver associated with this tree.

Source

pub fn resolved(&self) -> &ResolvedToken<S, D>

Turns this token into a ResolvedToken.

§Panics

If there is no resolver associated with this tree.

Source

pub fn replace_with(&self, replacement: 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

Source

pub fn syntax_kind(&self) -> RawSyntaxKind

The internal representation of the kind of this token.

Source

pub fn kind(&self) -> S

The kind of this token in terms of your language.

Source

pub fn text_range(&self) -> TextRange

The range this token covers in the source text, in bytes.

Source

pub fn resolve_text<'i, I>(&self, resolver: &'i I) -> &'i str
where I: Resolver<TokenKey> + ?Sized,

Uses the provided resolver to return the source text of this token.

If no text is explicitly associated with the token, returns its static_text instead.

Source

pub fn static_text(&self) -> Option<&'static str>

If the syntax kind of this token always represents the same text, returns that text.

§Examples

If there is a syntax kind Plus that represents just the + operator and we implement Syntax::static_text for it, we can retrieve this text in the resulting syntax tree.

let mut builder: GreenNodeBuilder<MySyntax> = GreenNodeBuilder::new();
let tree = parse(&mut builder, "x + 3");
let plus = tree
    .children_with_tokens()
    .nth(2) // `x`, then a space, then `+`
    .unwrap()
    .into_token()
    .unwrap();
assert_eq!(plus.static_text(), Some("+"));
Source

pub fn text_eq(&self, other: &Self) -> bool

Returns true if self and other represent equal source text.

This method is different from the PartialEq and Eq implementations in that it compares only the token text and not its source position. It is more efficient than comparing the result of resolve_text because it compares the tokens’ interned text_keys (if their text is not static) or their kind (if it is). Therefore, it also does not require a Resolver.

Note that the result of the comparison may be wrong when comparing two tokens from different trees that use different interners.

§Examples
let mut builder: GreenNodeBuilder<MySyntax> = GreenNodeBuilder::new();
let tree = parse(&mut builder, "x + x + 3");
let mut tokens = tree.children_with_tokens();
let tokens = tokens.by_ref();
let first_x = tokens.next().unwrap().into_token().unwrap();

// For the other tokens, skip over the whitespace between them
let first_plus = tokens.skip(1).next().unwrap().into_token().unwrap();
let second_x = tokens.skip(1).next().unwrap().into_token().unwrap();
let second_plus = tokens.skip(1).next().unwrap().into_token().unwrap();
assert!(first_x.text_eq(&second_x));
assert!(first_plus.text_eq(&second_plus));
Source

pub fn text_key(&self) -> Option<TokenKey>

Returns the interned key of text covered by this token, if any. This key may be used for comparisons with other keys of strings interned by the same interner.

See also resolve_text and text_eq.

§Examples

If you intern strings inside of your application, like inside a compiler, you can use token’s text keys to cross-reference between the syntax tree and the rest of your implementation by re-using the interner in both.

use cstree::interning::{TokenInterner, TokenKey, new_interner};
struct TypeTable {
    // ...
}
impl TypeTable {
    fn type_of(&self, ident: TokenKey) -> &str {
        // ...
    }
}
let interner = new_interner();
let mut state = State {
    interner,
    type_table: TypeTable{ /* stuff */},
};
let mut builder: GreenNodeBuilder<MySyntax, TokenInterner> =
    GreenNodeBuilder::with_interner(&mut state.interner);
let tree = parse(&mut builder, "x");
let type_table = &state.type_table;
let ident = tree
    .children_with_tokens()
    .next()
    .unwrap()
    .into_token()
    .unwrap();
let typ = type_table.type_of(ident.text_key().unwrap());
Source

pub fn green(&self) -> &GreenToken

Returns the unterlying green tree token of this token.

Source

pub fn parent(&self) -> &SyntaxNode<S, D>

The parent node of this token.

Source

pub fn ancestors(&self) -> impl Iterator<Item = &SyntaxNode<S, D>>

Returns an iterator along the chain of parents of this token.

Source

pub fn next_sibling_or_token(&self) -> Option<SyntaxElementRef<'_, S, D>>

The tree element to the right of this one, i.e. the next child of this token’s parent after this token.

Source

pub fn prev_sibling_or_token(&self) -> Option<SyntaxElementRef<'_, S, D>>

The tree element to the left of this one, i.e. the previous child of this token’s parent after this token.

Source

pub fn siblings_with_tokens( &self, direction: Direction, ) -> impl Iterator<Item = SyntaxElementRef<'_, S, D>>

Returns an iterator over all siblings of this token in the given direction, i.e. all of this token’s parent’s children from this token on to the left or the right. The first item in the iterator will always be this token.

Source

pub fn next_token(&self) -> Option<&SyntaxToken<S, D>>

Returns the next token in the tree. This is not necessary a direct sibling of this token, but will always be further right in the tree.

Source

pub fn prev_token(&self) -> Option<&SyntaxToken<S, D>>

Returns the previous token in the tree. This is not necessary a direct sibling of this token, but will always be further left in the tree.

Trait Implementations§

Source§

impl<S: Syntax, D> Clone for ResolvedToken<S, D>

Source§

fn clone(&self) -> Self

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

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

Performs copy-assignment from source. Read more
Source§

impl<S: Syntax, D> Debug for ResolvedToken<S, D>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<S: Syntax, D> Deref for ResolvedToken<S, D>

Source§

type Target = SyntaxToken<S, D>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<S: Syntax, D> DerefMut for ResolvedToken<S, D>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<S: Syntax, D> Display for ResolvedToken<S, D>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'a, S: Syntax, D> From<&'a ResolvedToken<S, D>> for ResolvedElementRef<'a, S, D>

Source§

fn from(token: &'a ResolvedToken<S, D>) -> Self

Converts to this type from the input type.
Source§

impl<S: Syntax, D> From<ResolvedToken<S, D>> for ResolvedElement<S, D>

Source§

fn from(token: ResolvedToken<S, D>) -> ResolvedElement<S, D>

Converts to this type from the input type.
Source§

impl<S: Syntax, D> Hash for ResolvedToken<S, D>

Source§

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

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
Source§

impl<S: Syntax, D> PartialEq for ResolvedToken<S, D>

Source§

fn eq(&self, other: &Self) -> 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.
Source§

impl<S: Syntax, D> Eq for ResolvedToken<S, D>

Auto Trait Implementations§

§

impl<S, D> Freeze for ResolvedToken<S, D>

§

impl<S, D = ()> !RefUnwindSafe for ResolvedToken<S, D>

§

impl<S, D> Send for ResolvedToken<S, D>

§

impl<S, D> Sync for ResolvedToken<S, D>

§

impl<S, D> Unpin for ResolvedToken<S, D>

§

impl<S, D = ()> !UnwindSafe for ResolvedToken<S, D>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.