summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--script/parser/luadoc.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/script/parser/luadoc.lua b/script/parser/luadoc.lua
index 1d8d7c42..b46c81d9 100644
--- a/script/parser/luadoc.lua
+++ b/script/parser/luadoc.lua
@@ -1310,6 +1310,16 @@ local function isNextLine(binded, doc)
return false
end
local lastDoc = binded[#binded]
+ if lastDoc.type == 'doc.type' then
+ return false
+ end
+ if lastDoc.type == 'doc.class'
+ or lastDoc.type == 'doc.field' then
+ if doc.type ~= 'doc.field'
+ and doc.type ~= 'doc.comment' then
+ return false
+ end
+ end
local lastRow = guide.rowColOf(lastDoc.finish)
local newRow = guide.rowColOf(doc.start)
return newRow - lastRow == 1