[Pldoc-chat] release 0.6, what's next
Status: Alpha
Brought to you by:
altumano
|
From: Albert T. <alb...@ma...> - 2002-04-29 20:17:26
|
Today, pldoc 0.6 is released.
Next big challenge is to parse function/procedure bodies.
If that is done, parsing package bodies will be a no-brainer.
One more idea: maybe it's possible to write some helper (perl?) script
that converts traditional comments like
-- does something
procedure do_something (
param1 number, -- first param
param2 number) -- second param
into pldoc-style
/** Does something.
* @param param1 first param
* @param param2 second param
*/
procedure do_something (
param1 number,
param2 number)
With such script, pldoc will need parse only well-formed comments,
that's much simpler.
Albert.
|