summaryrefslogtreecommitdiff
path: root/src-3.0/GF/Compile/Export.hs
blob: 2b36b10a9bd5b6a07c7a98102c4df17f700a58f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module GF.Compile.Export where

import PGF.Data (GFCC)
import PGF.Raw.Print (printTree)
import PGF.Raw.Convert (fromGFCC)
import GF.Compile.GFCCtoHaskell
import GF.Compile.GFCCtoJS
import GF.Infra.Option
import GF.Text.UTF8

-- top-level access to code generation

prGFCC :: OutputFormat -> GFCC -> String
prGFCC fmt gr = case fmt of
  FmtGFCC        -> printGFCC gr
  FmtJavaScript  -> gfcc2js gr
  FmtHaskell     -> grammar2haskell gr
  FmtHaskellGADT -> grammar2haskellGADT gr

printGFCC :: GFCC -> String
printGFCC = encodeUTF8 . printTree . fromGFCC