Codebase list lua-ldoc / f6713deb-cc0c-45a7-ac06-9651a6529d43/main tests / annot / annot.lua
f6713deb-cc0c-45a7-ac06-9651a6529d43/main

Tree @f6713deb-cc0c-45a7-ac06-9651a6529d43/main (Download .tar.gz)

annot.lua @f6713deb-cc0c-45a7-ac06-9651a6529d43/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