Respect injections in movement::move_parent_node_end

This commit is contained in:
Michael Davis 2024-01-25 14:33:37 -05:00 committed by Blaž Hrastnik
parent 8b6565c839
commit 035b8eabdb
2 changed files with 7 additions and 6 deletions

View file

@ -1352,6 +1352,12 @@ impl Syntax {
self.layers[container_id].tree()
}
pub fn named_descendant_for_byte_range(&self, start: usize, end: usize) -> Option<Node<'_>> {
self.tree_for_byte_range(start, end)
.root_node()
.named_descendant_for_byte_range(start, end)
}
pub fn descendant_for_byte_range(&self, start: usize, end: usize) -> Option<Node<'_>> {
self.tree_for_byte_range(start, end)
.root_node()