rust-analyzer/crates/ide/src/matching_brace.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
2.6 KiB
Rust
Raw Normal View History

2020-08-12 16:26:51 +00:00
use syntax::{
2020-06-25 06:45:11 +00:00
ast::{self, AstNode},
SourceFile, SyntaxKind, TextSize, T,
};
2019-03-23 16:34:49 +00:00
// Feature: Matching Brace
//
2020-06-25 06:45:11 +00:00
// If the cursor is on any brace (`<>(){}[]||`) which is a part of a brace-pair,
// 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
//
2022-08-01 11:47:09 +00:00
// | VS Code | **rust-analyzer: Find matching brace**
// |===
//
// image::https://user-images.githubusercontent.com/48062697/113065573-04298180-91b1-11eb-8dec-d4e2a202f304.gif[]
2020-11-02 15:31:38 +00:00
pub(crate) fn matching_brace(file: &SourceFile, offset: TextSize) -> Option<TextSize> {
2019-03-23 16:34:49 +00:00
const BRACES: &[SyntaxKind] =
2020-06-25 06:45:11 +00:00
&[T!['{'], T!['}'], T!['['], T![']'], T!['('], T![')'], T![<], T![>], T![|], T![|]];
let (brace_token, brace_idx) = file
.syntax()
.token_at_offset(offset)
.filter_map(|node| {
let idx = BRACES.iter().position(|&brace| brace == node.kind())?;
Some((node, idx))
})
.last()?;
let parent = brace_token.parent()?;
2020-06-25 06:45:11 +00:00
if brace_token.kind() == T![|] && !ast::ParamList::can_cast(parent.kind()) {
2021-03-08 20:19:44 +00:00
cov_mark::hit!(pipes_not_braces);
2020-06-25 06:45:11 +00:00
return None;
}
2019-03-23 16:34:49 +00:00
let matching_kind = BRACES[brace_idx ^ 1];
2020-06-25 08:16:06 +00: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 09:58:27 +00:00
Some(matching_node.text_range().start())
2019-03-23 16:34:49 +00: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);
let parse = SourceFile::parse(&before);
2019-07-19 09:56:47 +00:00
let new_pos = match matching_brace(&parse.tree(), pos) {
2019-03-23 16:34:49 +00:00
None => pos,
Some(pos) => pos,
};
let actual = add_cursor(&before, new_pos);
assert_eq_text!(after, &actual);
}
2021-01-06 20:15:48 +00:00
do_check("struct Foo { a: i32, }$0", "struct Foo $0{ a: i32, }");
do_check("fn main() { |x: i32|$0 x * 2;}", "fn main() { $0|x: i32| x * 2;}");
do_check("fn main() { $0|x: i32| x * 2;}", "fn main() { |x: i32$0| x * 2;}");
do_check(
"fn func(x) { return (2 * (x + 3)$0) + 5;}",
"fn func(x) { return $0(2 * (x + 3)) + 5;}",
);
2020-06-25 06:45:11 +00:00
{
2021-03-08 20:19:44 +00:00
cov_mark::check!(pipes_not_braces);
2020-06-25 06:45:11 +00:00
do_check(
2021-01-06 20:15:48 +00:00
"fn main() { match 92 { 1 | 2 |$0 3 => 92 } }",
"fn main() { match 92 { 1 | 2 |$0 3 => 92 } }",
2020-06-25 06:45:11 +00:00
);
}
2019-03-23 16:34:49 +00:00
}
}