moonwave 1.3.0

Moonwave is a tool for generating documentation from comments in Lua source code.
Documentation
--[=[
	@class abc
]=]

--[=[
	A method within abc's __index
]=]
function abc.__index:methodName()

end

--[=[
	@class xyz
	@__index prototype
]=]

--[=[
	A method within xyz's __index
]=]
function xyz.prototype:methodName()

end