CurryInfo: currydoc-4.0.0 / CurryDoc.Main.makeDoc

definition:
makeDoc :: DocOptions -> Bool -> String -> String -> IO ()
makeDoc docopts recursive docdir modname = do
  Just (_,progname) <- lookupModuleSourceInLoadPath modname
  putStrLn $ "Reading comments from file '" ++ progname ++ "'..."
  (modcmts,progcmts) <- readComments progname
  putStrLn $ "Reading analysis information for module \"" ++ modname ++ "\"..."
  anainfo <- readAnaInfo modname
  makeDocWithComments (docType docopts) docopts recursive docdir
                      anainfo modname modcmts progcmts
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- generate documentation for a single module:
indeterministic:
might be indeterministic
infix:
no fixity defined
iotype:
{(_,_,_,_) |-> _}
name:
makeDoc
precedence:
no precedence defined
result-values:
_
signature:
CurryDoc.Options.DocOptions -> Prelude.Bool -> String -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term