fix match bracket matching (#10777)

This commit is contained in:
Krishan 2024-05-17 00:20:01 +05:30 committed by GitHub
parent 889bbefeb3
commit 2301430e37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 2 deletions

View file

@ -895,6 +895,22 @@ async fn match_bracket() -> anyhow::Result<()> {
}
"##},
),
// named node with 2 or more children
(
indoc! {r##"
use a::#[{|]#
b::{c, d, e, f, g},
h, i, j, k, l, m, n,
};
"##},
"mm",
indoc! {r##"
use a::{
b::{c, d, e, f, g},
h, i, j, k, l, m, n,
#[}|]#;
"##},
),
];
let python_tests = vec![