diff options
Diffstat (limited to 'script/core/semantic-tokens.lua')
-rw-r--r-- | script/core/semantic-tokens.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/core/semantic-tokens.lua b/script/core/semantic-tokens.lua index da3396ce..2a77f17f 100644 --- a/script/core/semantic-tokens.lua +++ b/script/core/semantic-tokens.lua @@ -132,7 +132,7 @@ local Care = util.switch() start = source.start, finish = source.finish, type = define.TokenTypes.variable, - modifieres = define.TokenModifiers.abstract, + modifieres = define.TokenModifiers.definition, } return end @@ -292,7 +292,7 @@ local Care = util.switch() results[#results+1] = { start = source.start, finish = source.finish, - type = define.TokenTypes.variable, + type = define.TokenTypes.keyword, modifieres = define.TokenModifiers.readonly, } end) |