fix: tree-sitter-scopes would infinitely loop
This commit is contained in:
parent
a6108baec9
commit
585e3ce830
1 changed files with 8 additions and 3 deletions
|
@ -316,8 +316,12 @@ pub fn suggested_indent_for_pos(
|
||||||
pub fn get_scopes(syntax: Option<&Syntax>, text: RopeSlice, pos: usize) -> Vec<&'static str> {
|
pub fn get_scopes(syntax: Option<&Syntax>, text: RopeSlice, pos: usize) -> Vec<&'static str> {
|
||||||
let mut scopes = Vec::new();
|
let mut scopes = Vec::new();
|
||||||
if let Some(syntax) = syntax {
|
if let Some(syntax) = syntax {
|
||||||
let byte_start = text.char_to_byte(pos);
|
let pos = text.char_to_byte(pos);
|
||||||
let node = match get_highest_syntax_node_at_bytepos(syntax, byte_start) {
|
let mut node = match syntax
|
||||||
|
.tree()
|
||||||
|
.root_node()
|
||||||
|
.descendant_for_byte_range(pos, pos)
|
||||||
|
{
|
||||||
Some(node) => node,
|
Some(node) => node,
|
||||||
None => return scopes,
|
None => return scopes,
|
||||||
};
|
};
|
||||||
|
@ -325,7 +329,8 @@ pub fn get_scopes(syntax: Option<&Syntax>, text: RopeSlice, pos: usize) -> Vec<&
|
||||||
scopes.push(node.kind());
|
scopes.push(node.kind());
|
||||||
|
|
||||||
while let Some(parent) = node.parent() {
|
while let Some(parent) = node.parent() {
|
||||||
scopes.push(parent.kind())
|
scopes.push(parent.kind());
|
||||||
|
node = parent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue