Finalize impl Grammar

This commit is contained in:
Aleksey Kladov
2020-07-30 18:28:28 +02:00
parent c83467796b
commit c5798c4d75
54 changed files with 103 additions and 100 deletions

View File

@@ -647,7 +647,7 @@ fn highlight_element(
fn is_child_of_impl(element: &SyntaxElement) -> bool {
match element.parent() {
Some(e) => e.kind() == IMPL_DEF,
Some(e) => e.kind() == IMPL,
_ => false,
}
}