Codebase list lua-ldoc / d7993281-06e8-4009-8e4c-9ecac3babde9/main tests / annot / annot.lua
d7993281-06e8-4009-8e4c-9ecac3babde9/main

Tree @d7993281-06e8-4009-8e4c-9ecac3babde9/main (Download .tar.gz)

annot.lua @d7993281-06e8-4009-8e4c-9ecac3babde9/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