Changeset 2411 for src/Pugs/Compile.hs

Show
Ignore:
Timestamp:
04/27/05 21:58:01 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
3914
Message:

* It's not PIR, it's IMC

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Compile.hs

    r2401 r2411  
    1414import Pugs.Internals 
    1515import Pugs.Compile.Pugs (genPugs) 
    16 import Pugs.Compile.Parrot (genPIR) 
     16import Pugs.Compile.Parrot (genIMC) 
    1717import Pugs.Compile.Haskell (genGHC) 
    1818 
     
    2020compile "Haskell" env = fmap vCast $ runEval env genGHC 
    2121compile "Pugs"    env = fmap vCast $ runEval env genPugs 
    22 compile "Parrot"  env = fmap vCast $ runEval env genPIR 
     22compile "Parrot"  env = fmap vCast $ runEval env genIMC 
    2323compile s _ = fail $ "Cannot compile to " ++ s 
    2424