Codebase list lua-ldoc / 444a3d9
directory clean out steve donovan 12 years ago
1 changed file(s) with 21 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 ----------------
1 -- Testing annotations
2 -- @module annot
3
4 --- first fun.
5 function first()
6 if boo then
7 local bar = do_something()
8 if bar then
9 --- @fixme otherwise do what?
10 end
11 end
12 end
13
14 --- second try.
15 function second()
16 --- @todo also handle foo case
17 if bar then
18
19 end
20 end