feat(wing): add many missing highlights

...as well as some fold and injection queries.
This commit is contained in:
Riley Bruins 2024-08-31 18:28:56 -07:00 committed by Christian Clason
parent bbf1f3e546
commit e090c5b22d
4 changed files with 104 additions and 13 deletions

View file

@ -1,12 +1,13 @@
bring cloud;
// <- @keyword
// <- @keyword.import
// ^ @module
class Foo {
// <- @keyword.type
// ^ @type
// ^ @punctuation.bracket
name: str;
//^ @variable.member
//^ @property
// ^ @type.builtin
// ^ @punctuation.delimiter
new(name: str) {
@ -14,6 +15,7 @@ class Foo {
// ^ @variable
this.name = name;
// ^ @punctuation.delimiter
// ^ @variable.member
// ^ @operator
}
}