definition: |
styleCheck' :: Arguments -> Config -> IO () styleCheck' (_, _, []) config = restrict config 1 "All given files checked.\n" styleCheck' (p, o, (fileName:files)) config = do let modName = stripCurrySuffix fileName restrict config 2 $ "--------------------------------\n" ++ "INFO: Reading module " ++ modName filePaths <- lookupModuleSourceInLoadPath modName case filePaths of Nothing -> do putStrLn $ "WARNING: " ++ modName ++ " does not exist\n" styleCheck' (p, o, files) config Just (_,filePath) -> do ast <- getAST modName config src <- getSrc filePath config restrict config 2 $ "INFO: Checking style of file " ++ modName messages <- return (checkAll src ast config modName (getOutputOption config)) restrict config 1 $ "--------------------------------\n" ++ modName ++ "\n" ++ "--------------------------------\n" restrict config 0 $ messages ++"\n" styleCheck' (p, o, files) config |
demand: |
argument 1 |
deterministic: |
deterministic operation |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({(,,)},_) |-> _} |
name: |
styleCheck' |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(String, [Types.Flag], [String]) -> Types.Config -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |