Kotlin queries: Handle package statements

This commit is contained in:
Joaquín León 2021-09-17 18:50:45 -03:00 committed by Stephan Seitz
parent 8b7f70d366
commit 02a0719424
2 changed files with 6 additions and 1 deletions

View file

@ -31,6 +31,11 @@
"return" @keyword.return
(package_stmt
"package" @include)
(package_path
(identifier) @namespace)
(return_expr
"return@" @keyword.return
label: (identifier) @label)