[−][src]Struct tree_sitter::Tree
A tree that represents the syntactic structure of a source code file.
Methods
impl Tree
[src]
pub fn root_node(&self) -> Node
[src]
Get the root node of the syntax tree.
pub fn language(&self) -> Language
[src]
Get the language that was used to parse the syntax tree.
pub fn edit(&mut self, edit: &InputEdit)
[src]
Edit the syntax tree to keep it in sync with source code that has been edited.
You must describe the edit both in terms of byte offsets and in terms of row/column coordinates.
pub fn walk(&self) -> TreeCursor
[src]
Create a new TreeCursor starting from the root of the tree.
pub fn changed_ranges(
&self,
other: &Tree
) -> impl ExactSizeIterator<Item = Range>
[src]
&self,
other: &Tree
) -> impl ExactSizeIterator<Item = Range>
Compare this old edited syntax tree to a new syntax tree representing the same document, returning a sequence of ranges whose syntactic structure has changed.
For this to work correctly, this syntax tree must have been edited such that its
ranges match up to the new tree. Generally, you'll want to call this method right
after calling one of the Parser::parse functions. Call it on the old tree that
was passed to parse, and pass the new tree that was returned from parse
.
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,