moonwave 1.3.0

Moonwave is a tool for generating documentation from comments in Lua source code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
do
	--- @class InnerScope
	local InnerScope = {}

	--[=[
		@param name type -- inner scope here

		A function inside a do end block!
	]=]
	function InnerScope:method(name) end
end

--[=[
	@class BeforeReturn

	A class before a return
]=]
return {}