Operations to read the documentation comments in a Curry program.
Author: Michael Hanus
readCurryWithComments
:: String -> IO CurryProg
I/O action which parses a Curry program and returns the corresponding typed Abstract Curry program. |
readComments
:: String -> IO (String,String -> String,String -> String)
Reads all documentation comments of a source file. |
I/O action which parses a Curry program and returns the corresponding
typed Abstract Curry program. In addition to the operation
|
Reads all documentation comments of a source file. This operation returns the module comment, a mapping from type names into their documentation comments, and a mapping from function names into their documentation comments. |