Changeset 2782 for src/Main.hs

Show
Ignore:
Timestamp:
05/06/05 20:50:08 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
4340
Message:

* fix signature

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Main.hs

    r2774 r2782  
    140140    putStrLn str 
    141141 
    142 doCompile :: [Char] -> FilePath -> String -> IO String 
     142doCompile :: String -> FilePath -> String -> IO String 
    143143doCompile backend = doParseWith $ \env _ -> do 
    144144    globRef <- liftSTM $ do 
     
    147147    compile backend env{ envGlobal = globRef } 
    148148 
    149 doCompileDump :: [Char] -> FilePath -> String -> IO () 
     149doCompileDump :: String -> FilePath -> String -> IO () 
    150150doCompileDump backend file prog = do 
    151151    str <- doCompile backend file prog 
    152152    writeFile "dump.ast" str 
    153153 
    154 doCompileRun :: [Char] -> FilePath -> String -> IO () 
     154doCompileRun :: String -> FilePath -> String -> IO () 
    155155doCompileRun backend file prog = do 
    156156    str <- doCompile backend file prog