GreenBuilder

Struct GreenBuilder 

Source
pub struct GreenBuilder<L: Language> { /* private fields */ }
Expand description

Green tree builder for constructing nodes from child elements.

This builder provides a fluent API for constructing green nodes in an incremental parsing system.

Implementations§

Source§

impl<L: Language> GreenBuilder<L>

Source

pub fn new(capacity: usize) -> Self

Creates a new empty green builder.

§Examples
let builder = GreenBuilder::<K>::new();
Source

pub fn token(self, kind: L::SyntaxKind, len: usize) -> Self

Adds a tokens leaf to the builder.

§Arguments
  • kind - The tokens kind/type
  • len - The tokens length in bytes
§Examples
let builder = GreenBuilder::new().tokens(K::Identifier, 5);
Source

pub fn push(self, elem: GreenTree<L::SyntaxKind>) -> Self

Adds an existing green tree element to the builder.

§Arguments
  • elem - The green tree element to add
§Examples
let child_node = some_green_tree;
let builder = GreenBuilder::new().push(child_node);
Source

pub fn finish(self, kind: L::SyntaxKind) -> Arc<GreenNode<L::SyntaxKind>>

Finishes building and creates a new green node with the specified kind.

§Arguments
  • kind - The node kind/type for the finished green node
§Returns

A GreenNode<K> containing all the accumulated children.

§Examples
let green_node = GreenBuilder::new().token(K::Number, 3).finish(K::Expression);

Trait Implementations§

Source§

impl<L: Clone + Language> Clone for GreenBuilder<L>
where L::SyntaxKind: Clone,

Source§

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

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<L: Debug + Language> Debug for GreenBuilder<L>
where L::SyntaxKind: Debug,

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<L> Freeze for GreenBuilder<L>

§

impl<L> RefUnwindSafe for GreenBuilder<L>

§

impl<L> Send for GreenBuilder<L>
where <L as Language>::SyntaxKind: Sync,

§

impl<L> Sync for GreenBuilder<L>
where <L as Language>::SyntaxKind: Sync,

§

impl<L> Unpin for GreenBuilder<L>
where <L as Language>::SyntaxKind: Unpin,

§

impl<L> UnwindSafe for GreenBuilder<L>

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

impl<T> ErasedDestructor for T
where T: 'static,