CurryInfo: currypp-3.2.0 / CPP.ICode.TransICode.tryReadParserInfoFile

definition: Info
 
tryReadParserInfoFile :: Int -> String -> String
                      -> IO (Either String ParserInfo)
tryReadParserInfoFile verb model orgfname = do
  if null model
   then do orgdir  <- getAbsolutePath (takeDirectory orgfname)
           fresult <- findParserInfoFile (splitDirectories orgdir)
           case fresult of
             Left err    -> return (Left err)
             Right fname -> readParserInfo verb (orgdir </> fname)
   else readParserInfo verb model
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Try to read parser info file for the SQL preprocessor.
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 tryReadParserInfoFile
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Int -> String -> String
-> Prelude.IO (Prelude.Either String CPP.ICode.Parser.SQL.ParserInfoType.ParserInfo)
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term