We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06943cf commit 618ec82Copy full SHA for 618ec82
script/vm/compiler.lua
@@ -304,6 +304,17 @@ local searchFieldSwitch = util.switch()
304
end
305
306
end)
307
+ : case 'doc.type.sign'
308
+ : call(function (suri, source, key, pushResult)
309
+ if not source.node[1] then
310
+ return
311
+ end
312
+ local global = vm.getGlobal('type', source.node[1])
313
+ if not global then
314
315
316
+ vm.getClassFields(suri, global, key, pushResult)
317
+ end)
318
: case 'global'
319
: call(function (suri, node, key, pushResult)
320
if node.cate == 'variable' then
0 commit comments