diff options
| author | bringert <unknown> | 2005-04-21 15:21:02 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2005-04-21 15:21:02 +0000 |
| commit | 5c9917ff8d18ddaefd5a8bf4b223009747477fd8 (patch) | |
| tree | 46345cb91a8e0fa626a0bf4c03af8f8ef4cad09f /src/GF/CF/CFtoGrammar.hs | |
| parent | 3433c978480f112bf04a895d03ec15529796ecce (diff) | |
Fixed module names and imports after giant file move.
Diffstat (limited to 'src/GF/CF/CFtoGrammar.hs')
| -rw-r--r-- | src/GF/CF/CFtoGrammar.hs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/GF/CF/CFtoGrammar.hs b/src/GF/CF/CFtoGrammar.hs index 4670a6b80..5e73aec31 100644 --- a/src/GF/CF/CFtoGrammar.hs +++ b/src/GF/CF/CFtoGrammar.hs @@ -5,29 +5,29 @@ -- Stability : (stable) -- Portability : (portable) -- --- > CVS $Date: 2005/04/17 19:48:34 $ --- > CVS $Author: aarne $ --- > CVS $Revision: 1.6 $ +-- > CVS $Date: 2005/04/21 16:21:09 $ +-- > CVS $Author: bringert $ +-- > CVS $Revision: 1.7 $ -- -- 26\/1\/2000 -- 18\/4 -- 24\/3\/2004 ----------------------------------------------------------------------------- -module CFtoGrammar (cf2grammar) where +module GF.CF.CFtoGrammar (cf2grammar) where -import Ident -import Grammar -import qualified AbsGF as A -import qualified GrammarToSource as S -import Macros +import GF.Infra.Ident +import GF.Grammar.Grammar +import qualified GF.Source.AbsGF as A +import qualified GF.Source.GrammarToSource as S +import GF.Grammar.Macros -import CF -import CFIdent -import PPrCF +import GF.CF.CF +import GF.CF.CFIdent +import GF.CF.PPrCF -import Operations +import GF.Data.Operations -import List (nub) -import Char (isSpace) +import Data.List (nub) +import Data.Char (isSpace) cf2grammar :: CF -> [A.TopDef] cf2grammar cf = concatMap S.trAnyDef (abs ++ conc) where |
