summaryrefslogtreecommitdiff
path: root/script/cli/doc.lua
diff options
context:
space:
mode:
authorAndreas <andreas.matthias@gmail.com>2024-02-26 14:35:19 +0100
committerAndreas <andreas.matthias@gmail.com>2024-02-26 14:35:19 +0100
commitd0bfdaa6aa1f75b45f4eeeaabb7de1e0a99075bf (patch)
tree462be31229557c7ef1a86e44800d1dbe0e954e5c /script/cli/doc.lua
parentbeacc217d1858a917df326c7a2535bed8a33d283 (diff)
downloadlua-language-server-d0bfdaa6aa1f75b45f4eeeaabb7de1e0a99075bf.zip
Add "deprecated" key in JSON output.
Diffstat (limited to 'script/cli/doc.lua')
-rw-r--r--script/cli/doc.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/script/cli/doc.lua b/script/cli/doc.lua
index 7f7d38e3..7e7c8534 100644
--- a/script/cli/doc.lua
+++ b/script/cli/doc.lua
@@ -192,6 +192,10 @@ local function collectTypes(global, results)
if vm.isAsync(source, true) then
field.async = true
end
+ local depr = vm.getDeprecated(source)
+ if (depr and not depr.versions) then
+ field.deprecated = true
+ end
return
end
if source.type == 'tableindex' then
@@ -256,6 +260,10 @@ local function collectVars(global, results)
if vm.isAsync(set, true) then
result.defines[#result.defines].extends['async'] = true
end
+ local depr = vm.getDeprecated(set)
+ if (depr and not depr.versions) then
+ result.defines[#result.defines].extends['deprecated'] = true
+ end
end
end
if #result.defines == 0 then