aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/modules/ctags/lua/foo.lua
blob: 6988b7f300cf2cb9980efad1694f6c7d8138d809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function foo() end
local function bar() end
baz = {}
function baz:quux() end

--[[ For LuaDoc
module('foo')]]
local M = {}

---
-- Foo
-- @name new
function M.new() end

return M