2019-07-04 15:05:17 -05:00
|
|
|
use ra_syntax::{algo::find_token_at_offset, ast::AstNode, SourceFile, SyntaxKind, TextUnit, T};
|
2019-03-23 11:34:49 -05:00
|
|
|
|
|
|
|
pub fn matching_brace(file: &SourceFile, offset: TextUnit) -> Option<TextUnit> {
|
|
|
|
const BRACES: &[SyntaxKind] =
|
2019-05-15 07:35:47 -05:00
|
|
|
&[T!['{'], T!['}'], T!['['], T![']'], T!['('], T![')'], T![<], T![>]];
|
2019-03-30 05:25:53 -05:00
|
|
|
let (brace_node, brace_idx) = find_token_at_offset(file.syntax(), offset)
|
2019-03-23 11:34:49 -05:00
|
|
|
.filter_map(|node| {
|
|
|
|
let idx = BRACES.iter().position(|&brace| brace == node.kind())?;
|
|
|
|
Some((node, idx))
|
|
|
|
})
|
|
|
|
.next()?;
|
2019-03-30 05:25:53 -05:00
|
|
|
let parent = brace_node.parent();
|
2019-03-23 11:34:49 -05:00
|
|
|
let matching_kind = BRACES[brace_idx ^ 1];
|
2019-03-30 05:25:53 -05:00
|
|
|
let matching_node = parent.children_with_tokens().find(|node| node.kind() == matching_kind)?;
|
2019-03-23 11:34:49 -05:00
|
|
|
Some(matching_node.range().start())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use test_utils::{add_cursor, assert_eq_text, extract_offset};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_matching_brace() {
|
|
|
|
fn do_check(before: &str, after: &str) {
|
|
|
|
let (pos, before) = extract_offset(before);
|
2019-07-12 11:41:13 -05:00
|
|
|
let parse = SourceFile::parse(&before);
|
|
|
|
let new_pos = match matching_brace(parse.tree(), pos) {
|
2019-03-23 11:34:49 -05:00
|
|
|
None => pos,
|
|
|
|
Some(pos) => pos,
|
|
|
|
};
|
|
|
|
let actual = add_cursor(&before, new_pos);
|
|
|
|
assert_eq_text!(after, &actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
do_check("struct Foo { a: i32, }<|>", "struct Foo <|>{ a: i32, }");
|
|
|
|
}
|
|
|
|
}
|