2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2020-06-25 01:45:11 -05:00
|
|
|
ast::{self, AstNode},
|
|
|
|
SourceFile, SyntaxKind, TextSize, T,
|
|
|
|
};
|
|
|
|
use test_utils::mark;
|
2019-03-23 11:34:49 -05:00
|
|
|
|
2020-05-31 02:59:38 -05:00
|
|
|
// Feature: Matching Brace
|
|
|
|
//
|
2020-06-25 01:45:11 -05:00
|
|
|
// If the cursor is on any brace (`<>(){}[]||`) which is a part of a brace-pair,
|
2020-05-31 02:59:38 -05:00
|
|
|
// moves cursor to the matching brace. It uses the actual parser to determine
|
|
|
|
// braces, so it won't confuse generics with comparisons.
|
|
|
|
//
|
|
|
|
// |===
|
|
|
|
// | Editor | Action Name
|
|
|
|
//
|
|
|
|
// | VS Code | **Rust Analyzer: Find matching brace**
|
|
|
|
// |===
|
2020-04-24 16:40:41 -05:00
|
|
|
pub fn matching_brace(file: &SourceFile, offset: TextSize) -> Option<TextSize> {
|
2019-03-23 11:34:49 -05:00
|
|
|
const BRACES: &[SyntaxKind] =
|
2020-06-25 01:45:11 -05:00
|
|
|
&[T!['{'], T!['}'], T!['['], T![']'], T!['('], T![')'], T![<], T![>], T![|], T![|]];
|
|
|
|
let (brace_token, brace_idx) = file
|
2019-07-21 05:28:58 -05:00
|
|
|
.syntax()
|
|
|
|
.token_at_offset(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()?;
|
2020-06-25 01:45:11 -05:00
|
|
|
let parent = brace_token.parent();
|
|
|
|
if brace_token.kind() == T![|] && !ast::ParamList::can_cast(parent.kind()) {
|
|
|
|
mark::hit!(pipes_not_braces);
|
|
|
|
return None;
|
|
|
|
}
|
2019-03-23 11:34:49 -05:00
|
|
|
let matching_kind = BRACES[brace_idx ^ 1];
|
2020-06-25 03:16:06 -05:00
|
|
|
let matching_node = parent
|
|
|
|
.children_with_tokens()
|
|
|
|
.filter_map(|it| it.into_token())
|
|
|
|
.find(|node| node.kind() == matching_kind && node != &brace_token)?;
|
2019-07-20 04:58:27 -05:00
|
|
|
Some(matching_node.text_range().start())
|
2019-03-23 11:34:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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);
|
2019-07-19 04:56:47 -05:00
|
|
|
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, }");
|
2020-06-25 01:45:11 -05:00
|
|
|
do_check("fn main() { |x: i32|<|> x * 2;}", "fn main() { <|>|x: i32| x * 2;}");
|
2020-06-25 03:16:06 -05:00
|
|
|
do_check("fn main() { <|>|x: i32| x * 2;}", "fn main() { |x: i32<|>| x * 2;}");
|
2020-06-25 01:45:11 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
mark::check!(pipes_not_braces);
|
|
|
|
do_check(
|
|
|
|
"fn main() { match 92 { 1 | 2 |<|> 3 => 92 } }",
|
|
|
|
"fn main() { match 92 { 1 | 2 |<|> 3 => 92 } }",
|
|
|
|
);
|
|
|
|
}
|
2019-03-23 11:34:49 -05:00
|
|
|
}
|
|
|
|
}
|