diff options
| author | Akin Sowemimo <akin.sowemimo@gmail.com> | 2020-07-23 09:28:48 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.lauf@yahoo.de> | 2020-07-23 17:17:03 +0200 |
| commit | 12feef7af885fdbef21ac5c65e44d58575b52ec4 (patch) | |
| tree | 9f8695b568c91899773c0be4eb6bf82aa5a2ef23 /queries | |
| parent | 2ae63525dc16e178821fdfc31a265b0916c7caa4 (diff) | |
Add getter and setter signature highlights
Diffstat (limited to 'queries')
| -rw-r--r-- | queries/dart/highlights.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/queries/dart/highlights.scm b/queries/dart/highlights.scm index 5ce6a196..75b40b39 100644 --- a/queries/dart/highlights.scm +++ b/queries/dart/highlights.scm @@ -62,6 +62,12 @@ scope: (identifier) @type) (function_signature name: (identifier) @method) +; using method_signature does not work +; so specifically use getter and setter signatures +(getter_signature + (identifier) @method) +(setter_signature + name: (identifier) @method) (enum_declaration name: (identifier) @type) (enum_constant @@ -127,9 +133,8 @@ "const" "async" "await" - ; "rethrow" ] @keyword -;TODO: var, async, await +;TODO: ; "rethrow" @keyword ["if" "else" "switch" "case"] @conditional |
