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/Grammar/PrGrammar.hs | |
| parent | 3433c978480f112bf04a895d03ec15529796ecce (diff) | |
Fixed module names and imports after giant file move.
Diffstat (limited to 'src/GF/Grammar/PrGrammar.hs')
| -rw-r--r-- | src/GF/Grammar/PrGrammar.hs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/GF/Grammar/PrGrammar.hs b/src/GF/Grammar/PrGrammar.hs index 47369804b..297790a76 100644 --- a/src/GF/Grammar/PrGrammar.hs +++ b/src/GF/Grammar/PrGrammar.hs @@ -5,9 +5,9 @@ -- Stability : (stable) -- Portability : (portable) -- --- > CVS $Date: 2005/04/20 20:09:19 $ --- > CVS $Author: aarne $ --- > CVS $Revision: 1.12 $ +-- > CVS $Date: 2005/04/21 16:22:27 $ +-- > CVS $Author: bringert $ +-- > CVS $Revision: 1.13 $ -- -- AR 7\/12\/1999 - 1\/4\/2000 - 10\/5\/2003 -- @@ -19,7 +19,7 @@ -- only the former is ever needed. ----------------------------------------------------------------------------- -module PrGrammar (Print(..), +module GF.Grammar.PrGrammar (Print(..), prtBad, prGrammar, prModule, prContext, prParam, @@ -32,22 +32,22 @@ module PrGrammar (Print(..), prExp, prPatt, prOperSignature ) where -import Operations -import Zipper -import Grammar -import Modules -import qualified PrintGF as P -import qualified PrintGFC as C -import qualified AbsGFC as A -import Values -import GrammarToSource +import GF.Data.Operations +import GF.Data.Zipper +import GF.Grammar.Grammar +import GF.Infra.Modules +import qualified GF.Source.PrintGF as P +import qualified GF.Canon.PrintGFC as C +import qualified GF.Canon.AbsGFC as A +import GF.Grammar.Values +import GF.Source.GrammarToSource --- import GFC (CanonGrammar) --- cycle of modules -import Option -import Ident -import Str +import GF.Infra.Option +import GF.Infra.Ident +import GF.Data.Str -import List (intersperse) +import Data.List (intersperse) class Print a where prt :: a -> String |
