diff options
Diffstat (limited to 'src/compiler/GF/Compile')
| -rw-r--r-- | src/compiler/GF/Compile/Export.hs | 6 | ||||
| -rw-r--r-- | src/compiler/GF/Compile/GrammarToPGF.hs (renamed from src/compiler/GF/Compile/GrammarToGFCC.hs) | 2 | ||||
| -rw-r--r-- | src/compiler/GF/Compile/OptimizePGF.hs (renamed from src/compiler/GF/Compile/OptimizeGFCC.hs) | 2 | ||||
| -rw-r--r-- | src/compiler/GF/Compile/PGFtoHaskell.hs (renamed from src/compiler/GF/Compile/GFCCtoHaskell.hs) | 4 | ||||
| -rw-r--r-- | src/compiler/GF/Compile/PGFtoJS.hs (renamed from src/compiler/GF/Compile/GFCCtoJS.hs) | 2 | ||||
| -rw-r--r-- | src/compiler/GF/Compile/PGFtoProlog.hs (renamed from src/compiler/GF/Compile/GFCCtoProlog.hs) | 4 |
6 files changed, 10 insertions, 10 deletions
diff --git a/src/compiler/GF/Compile/Export.hs b/src/compiler/GF/Compile/Export.hs index d03eb947e..29f35e32a 100644 --- a/src/compiler/GF/Compile/Export.hs +++ b/src/compiler/GF/Compile/Export.hs @@ -2,9 +2,9 @@ module GF.Compile.Export where import PGF.CId import PGF.Data (PGF(..)) -import GF.Compile.GFCCtoHaskell -import GF.Compile.GFCCtoProlog -import GF.Compile.GFCCtoJS +import GF.Compile.PGFtoHaskell +import GF.Compile.PGFtoProlog +import GF.Compile.PGFtoJS import GF.Compile.PGFPretty import GF.Infra.Option import GF.Speech.CFG diff --git a/src/compiler/GF/Compile/GrammarToGFCC.hs b/src/compiler/GF/Compile/GrammarToPGF.hs index fb92ef74c..ce7e5be73 100644 --- a/src/compiler/GF/Compile/GrammarToGFCC.hs +++ b/src/compiler/GF/Compile/GrammarToPGF.hs @@ -1,5 +1,5 @@ {-# LANGUAGE PatternGuards #-} -module GF.Compile.GrammarToGFCC (mkCanon2gfcc,addParsers) where +module GF.Compile.GrammarToPGF (mkCanon2gfcc,addParsers) where import GF.Compile.Export import qualified GF.Compile.GenerateFCFG as FCFG diff --git a/src/compiler/GF/Compile/OptimizeGFCC.hs b/src/compiler/GF/Compile/OptimizePGF.hs index 2a218e1bb..b23560437 100644 --- a/src/compiler/GF/Compile/OptimizeGFCC.hs +++ b/src/compiler/GF/Compile/OptimizePGF.hs @@ -1,4 +1,4 @@ -module GF.Compile.OptimizeGFCC where +module GF.Compile.OptimizePGF where import PGF.CId import PGF.Data diff --git a/src/compiler/GF/Compile/GFCCtoHaskell.hs b/src/compiler/GF/Compile/PGFtoHaskell.hs index d44d6705c..787433963 100644 --- a/src/compiler/GF/Compile/GFCCtoHaskell.hs +++ b/src/compiler/GF/Compile/PGFtoHaskell.hs @@ -1,6 +1,6 @@ ---------------------------------------------------------------------- -- | --- Module : GFCCtoHaskell +-- Module : PGFtoHaskell -- Maintainer : Aarne Ranta -- Stability : (stable) -- Portability : (portable) @@ -14,7 +14,7 @@ -- AR 11/11/1999 -- 7/12/2000 -- 18/5/2004 ----------------------------------------------------------------------------- -module GF.Compile.GFCCtoHaskell (grammar2haskell) where +module GF.Compile.PGFtoHaskell (grammar2haskell) where import PGF.CId import PGF.Data diff --git a/src/compiler/GF/Compile/GFCCtoJS.hs b/src/compiler/GF/Compile/PGFtoJS.hs index 4ec12e701..ff75d8fe6 100644 --- a/src/compiler/GF/Compile/GFCCtoJS.hs +++ b/src/compiler/GF/Compile/PGFtoJS.hs @@ -1,4 +1,4 @@ -module GF.Compile.GFCCtoJS (pgf2js) where +module GF.Compile.PGFtoJS (pgf2js) where import PGF.CId import PGF.Data hiding (mkStr) diff --git a/src/compiler/GF/Compile/GFCCtoProlog.hs b/src/compiler/GF/Compile/PGFtoProlog.hs index 702d4afe5..538430747 100644 --- a/src/compiler/GF/Compile/GFCCtoProlog.hs +++ b/src/compiler/GF/Compile/PGFtoProlog.hs @@ -1,6 +1,6 @@ ---------------------------------------------------------------------- -- | --- Module : GFCCtoProlog +-- Module : PGFtoProlog -- Maintainer : Peter Ljunglöf -- Stability : (stable) -- Portability : (portable) @@ -8,7 +8,7 @@ -- to write a GF grammar into a Prolog module ----------------------------------------------------------------------------- -module GF.Compile.GFCCtoProlog (grammar2prolog, grammar2prolog_abs) where +module GF.Compile.PGFtoProlog (grammar2prolog, grammar2prolog_abs) where import PGF.CId import PGF.Data |
