definition: |
getDeclarationsInModule :: String -> IO ([Occurrence], [Occurrence], [Occurrence]) getDeclarationsInModule mn = do (mdl, comments) <- readModule mn let ops = collectOperationsInModule mdl comments let types = collectTypesInModule mdl comments let classes = collectClassesInModule mdl comments return (ops, types, classes) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Extracts all operations, type declarations and class declarations --- in a module with their associated comment and code spans. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getDeclarationsInModule |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO ([(String, (Prelude.Int, Prelude.Int), (Prelude.Int, Prelude.Int))], [(String, (Prelude.Int, Prelude.Int), (Prelude.Int, Prelude.Int))], [(String, (Prelude.Int, Prelude.Int), (Prelude.Int, Prelude.Int))]) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |