Struct tree_sitter::Tree
source · [−]pub struct Tree(_);
Expand description
A tree that represents the syntactic structure of a source code file.
Implementations
sourceimpl Tree
impl Tree
sourcepub fn root_node_with_offset(
&self,
offset_bytes: usize,
offset_extent: Point
) -> Node<'_>
pub fn root_node_with_offset(
&self,
offset_bytes: usize,
offset_extent: Point
) -> Node<'_>
Get the root node of the syntax tree, but with its position shifted forward by the given offset.
sourcepub fn edit(&mut self, edit: &InputEdit)
pub fn edit(&mut self, edit: &InputEdit)
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.
sourcepub fn walk(&self) -> TreeCursor<'_>
pub fn walk(&self) -> TreeCursor<'_>
Create a new TreeCursor starting from the root of the tree.
sourcepub fn changed_ranges(
&self,
other: &Tree
) -> impl ExactSizeIterator<Item = Range>
pub fn changed_ranges(
&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
.
sourcepub fn included_ranges(&self) -> Vec<Range>
pub fn included_ranges(&self) -> Vec<Range>
Get the included ranges that were used to parse the syntax tree.
sourcepub fn print_dot_graph(&self, file: &impl AsRawFd)
pub fn print_dot_graph(&self, file: &impl AsRawFd)
Print a graph of the tree to the given file descriptor.
The graph is formatted in the DOT language. You may want to pipe this graph
directly to a dot(1)
process in order to generate SVG output.