Changeset 8675 for src/Pugs/CodeGen.hs
- Timestamp:
- 01/15/06 08:26:19 (3 years ago)
- Files:
-
- 1 modified
-
src/Pugs/CodeGen.hs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/CodeGen.hs
r7867 r8675 14 14 import Pugs.Internals 15 15 import Pugs.CodeGen.PIL1 (genPIL1) 16 import Pugs.CodeGen.PIL2 (genPIL2, genPIL2Perl5, genPIL2Binary, genPIL2JSON )16 import Pugs.CodeGen.PIL2 (genPIL2, genPIL2Perl5, genPIL2Binary, genPIL2JSON, genPIL2YAML) 17 17 import Pugs.CodeGen.PIR (genPIR) 18 18 import Pugs.CodeGen.Perl5 (genPerl5) 19 import Pugs.CodeGen.YAML (genYAML) 19 20 import Pugs.CodeGen.JSON (genJSON) 20 21 import Pugs.CodeGen.Binary (genBinary) … … 34 35 , ("PIL1-Binary", genBinary) 35 36 , ("PIL1-JSON", genJSON) 37 , ("PIL1-YAML", genYAML) 36 38 , ("PIL2", genPIL2) 37 39 , ("PIL2-Perl5", genPIL2Perl5) 38 40 , ("PIL2-JSON", genPIL2JSON) 41 , ("PIL2-YAML", genPIL2YAML) 39 42 , ("PIL2-Binary", genPIL2Binary) 40 43 , ("Pugs", genPugs) … … 57 60 norm' "binary" = "!PIL1-Binary" 58 61 norm' "json" = "!PIL1-JSON" 62 norm' "yaml" = "!PIL1-YAML" 59 63 norm' "pil1perl5" = "PIL1-Perl5" 60 64 norm' "pil1json" = "PIL1-JSON" 65 norm' "pil1yaml" = "PIL1-YAML" 61 66 norm' "pil1binary" = "PIL1-Binary" 62 67 norm' "pil2perl5" = "PIL2-Perl5" 63 68 norm' "pil2json" = "PIL2-JSON" 69 norm' "pil2yaml" = "PIL2-YAML" 64 70 norm' "pil2binary" = "PIL2-Binary" 65 71 norm' "pugs" = "Pugs"
