definition: |
tryReadCurryWithImports :: String -> IO (Either [String] [CurryProg]) tryReadCurryWithImports modname = collect [] [modname] where collect _ [] = return (Right []) collect imported (m:ms) | m `elem` imported = collect imported ms | otherwise = do eProg <- tryReadCurryFile m case eProg of Left err -> return (Left [err]) Right prog@(CurryProg _ is _ _ _ _ _ _) -> do results <- collect (m:imported) (ms ++ is) return (either Left (Right . (prog :)) results) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
tryReadCurryWithImports |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO (Prelude.Either [String] [AbstractCurry.Types.CurryProg]) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |