Changeset 8684 for src/Pugs/CodeGen.hs
- Timestamp:
- 01/15/06 18:15:06 (3 years ago)
- Files:
-
- 1 modified
-
src/Pugs/CodeGen.hs (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/CodeGen.hs
r8681 r8684 14 14 import Pugs.Internals 15 15 import Pugs.CodeGen.PIL1 (genPIL1) 16 import Pugs.CodeGen.PIL2 (genPIL2, genPIL2Perl5, genPIL2 Binary, genPIL2JSON, genPIL2YAML)16 import Pugs.CodeGen.PIL2 (genPIL2, genPIL2Perl5, genPIL2JSON, genPIL2YAML) 17 17 import Pugs.CodeGen.PIR (genPIR, genPIR_YAML) 18 18 import Pugs.CodeGen.Perl5 (genPerl5) 19 19 import Pugs.CodeGen.YAML (genYAML) 20 20 import Pugs.CodeGen.JSON (genJSON) 21 import Pugs.CodeGen.Binary (genBinary)22 21 import Pugs.Compile.Pugs (genPugs) 23 22 import Pugs.Compile.Haskell (genGHC) … … 34 33 , ("PIL1", genPIL1) 35 34 , ("PIL1-Perl5", genPerl5) 36 , ("PIL1-Binary", genBinary)37 35 , ("PIL1-JSON", genJSON) 38 36 , ("PIL1-YAML", genYAML) … … 41 39 , ("PIL2-JSON", genPIL2JSON) 42 40 , ("PIL2-YAML", genPIL2YAML) 43 , ("PIL2-Binary", genPIL2Binary)44 41 , ("Pugs", genPugs) 42 , ("Parse-YAML", genParseYAML) 45 43 -- , ("XML", genXML) 46 44 ] … … 60 58 norm' "pil2" = "PIL2" 61 59 norm' "perl5" = "!PIL1-Perl5" 62 norm' "binary" = "!PIL1-Binary"63 60 norm' "json" = "!PIL1-JSON" 64 61 norm' "yaml" = "!PIL1-YAML" … … 66 63 norm' "pil1json" = "PIL1-JSON" 67 64 norm' "pil1yaml" = "PIL1-YAML" 68 norm' "pil1binary" = "PIL1-Binary"69 65 norm' "pil2perl5" = "PIL2-Perl5" 70 66 norm' "pil2json" = "PIL2-JSON" 71 67 norm' "pil2yaml" = "PIL2-YAML" 72 norm' "pil2binary" = "PIL2-Binary"73 68 norm' "pugs" = "Pugs" 74 69 -- norm' "xml" = "XML"
