1
0
forked from GitHub/gf-core

moved some modules to Devel.Grammar

This commit is contained in:
aarne
2007-12-04 07:48:37 +00:00
parent 476a92ba19
commit d9a90f6917
7 changed files with 24 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
module GF.Devel.Judgements where
module GF.Devel.Grammar.Judgements where
import GF.Devel.Terms
import GF.Devel.Grammar.Terms
import GF.Infra.Ident
data Judgement = Judgement {

View File

@@ -1,9 +1,9 @@
module GF.Devel.Lookup where
module GF.Devel.Grammar.Lookup where
import GF.Devel.Modules
import GF.Devel.Judgements
import GF.Devel.Macros
import GF.Devel.Terms
import GF.Devel.Grammar.Modules
import GF.Devel.Grammar.Judgements
import GF.Devel.Grammar.Macros
import GF.Devel.Grammar.Terms
import GF.Infra.Ident
import GF.Data.Operations

View File

@@ -1,8 +1,8 @@
module GF.Devel.Macros where
module GF.Devel.Grammar.Macros where
import GF.Devel.Terms
import GF.Devel.Judgements
import GF.Devel.Modules
import GF.Devel.Grammar.Terms
import GF.Devel.Grammar.Judgements
import GF.Devel.Grammar.Modules
import GF.Infra.Ident
import GF.Data.Operations

View File

@@ -1,8 +1,8 @@
module GF.Devel.MkJudgements where
module GF.Devel.Grammar.MkJudgements where
import GF.Devel.Macros
import GF.Devel.Judgements
import GF.Devel.Terms
import GF.Devel.Grammar.Macros
import GF.Devel.Grammar.Judgements
import GF.Devel.Grammar.Terms
import GF.Infra.Ident
import GF.Data.Operations

View File

@@ -1,7 +1,7 @@
module GF.Devel.Modules where
module GF.Devel.Grammar.Modules where
import GF.Devel.Judgements
import GF.Devel.Terms
import GF.Devel.Grammar.Judgements
import GF.Devel.Grammar.Terms
import GF.Infra.Ident
import GF.Data.Operations

View File

@@ -21,12 +21,12 @@ module GF.Devel.Grammar.SourceToGF (
newReservedWords
) where
import qualified GF.Devel.Terms as G
import qualified GF.Devel.Grammar.Terms as G
----import qualified GF.Grammar.PrGrammar as GP
import GF.Devel.Judgements
import GF.Devel.MkJudgements
import GF.Devel.Modules
import qualified GF.Devel.Macros as M
import GF.Devel.Grammar.Judgements
import GF.Devel.Grammar.MkJudgements
import GF.Devel.Grammar.Modules
import qualified GF.Devel.Grammar.Macros as M
----import qualified GF.Compile.Update as U
--import qualified GF.Infra.Option as GO
--import qualified GF.Compile.ModDeps as GD

View File

@@ -1,7 +1,6 @@
module GF.Devel.Terms where
module GF.Devel.Grammar.Terms where
import GF.Infra.Ident
import GF.Infra.Modules
import GF.Data.Operations