summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--script/core/noder.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/script/core/noder.lua b/script/core/noder.lua
index e93315b7..866e64d0 100644
--- a/script/core/noder.lua
+++ b/script/core/noder.lua
@@ -197,6 +197,10 @@ local function checkMode(source)
if source.type == 'call' then
return 'c:'
end
+ if source.type == '...'
+ or source.type == 'varargs' then
+ return 'va:'
+ end
if source.type == 'doc.class.name'
or source.type == 'doc.type.name'
or source.type == 'doc.alias.name'