Codebase list lua-ldoc / upstream/1.3.13 tests / classes.lua
upstream/1.3.13

Tree @upstream/1.3.13 (Download .tar.gz)

classes.lua @upstream/1.3.13raw · history · blame

----------------------
-- a module containing some classes.
-- @module classes

local _M = {}

---- a useful class.
-- @type Bonzo

_M.Bonzo = class()

--- a method.
-- function one
function Bonzo:one()

end

--- a metamethod
-- function __tostring
function Bonzo:__tostring()

end

return M