Codebase list lua-ldoc / 3d597a99-35f3-4202-a36f-2fef0c0f337f/main tests / annot / annot.lua
3d597a99-35f3-4202-a36f-2fef0c0f337f/main

Tree @3d597a99-35f3-4202-a36f-2fef0c0f337f/main (Download .tar.gz)

annot.lua @3d597a99-35f3-4202-a36f-2fef0c0f337f/mainraw · history · blame

----------------
-- Testing annotations
-- @module annot

--- first fun.
function first()
   if boo then
      local bar = do_something()
      if bar then
      ---  @fixme otherwise do what?
      end
   end
end

--- second try.
function second()
   --- @todo also handle foo case
   if bar then

   end
end