summaryrefslogtreecommitdiff
path: root/src/GF/Compile
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Compile')
-rw-r--r--src/GF/Compile/CheckGrammar.hs14
-rw-r--r--src/GF/Compile/Compile.hs14
-rw-r--r--src/GF/Compile/Extend.hs14
-rw-r--r--src/GF/Compile/GetGrammar.hs14
-rw-r--r--src/GF/Compile/GrammarToCanon.hs14
-rw-r--r--src/GF/Compile/MkResource.hs14
-rw-r--r--src/GF/Compile/MkUnion.hs14
-rw-r--r--src/GF/Compile/ModDeps.hs14
-rw-r--r--src/GF/Compile/NewRename.hs14
-rw-r--r--src/GF/Compile/Optimize.hs14
-rw-r--r--src/GF/Compile/PGrammar.hs14
-rw-r--r--src/GF/Compile/PrOld.hs14
-rw-r--r--src/GF/Compile/Rebuild.hs14
-rw-r--r--src/GF/Compile/RemoveLiT.hs14
-rw-r--r--src/GF/Compile/Rename.hs14
-rw-r--r--src/GF/Compile/ShellState.hs14
-rw-r--r--src/GF/Compile/Update.hs14
17 files changed, 238 insertions, 0 deletions
diff --git a/src/GF/Compile/CheckGrammar.hs b/src/GF/Compile/CheckGrammar.hs
index 8d0d2de98..5418cddd9 100644
--- a/src/GF/Compile/CheckGrammar.hs
+++ b/src/GF/Compile/CheckGrammar.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module CheckGrammar where
import Grammar
diff --git a/src/GF/Compile/Compile.hs b/src/GF/Compile/Compile.hs
index a540caca5..3b6f44d87 100644
--- a/src/GF/Compile/Compile.hs
+++ b/src/GF/Compile/Compile.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Compile where
import Grammar
diff --git a/src/GF/Compile/Extend.hs b/src/GF/Compile/Extend.hs
index a2994c01b..e0c56e31f 100644
--- a/src/GF/Compile/Extend.hs
+++ b/src/GF/Compile/Extend.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Extend where
import Grammar
diff --git a/src/GF/Compile/GetGrammar.hs b/src/GF/Compile/GetGrammar.hs
index e2c581dd4..ac340ccd1 100644
--- a/src/GF/Compile/GetGrammar.hs
+++ b/src/GF/Compile/GetGrammar.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module GetGrammar where
import Operations
diff --git a/src/GF/Compile/GrammarToCanon.hs b/src/GF/Compile/GrammarToCanon.hs
index 55390c390..5ec5c8091 100644
--- a/src/GF/Compile/GrammarToCanon.hs
+++ b/src/GF/Compile/GrammarToCanon.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module GrammarToCanon where
import Operations
diff --git a/src/GF/Compile/MkResource.hs b/src/GF/Compile/MkResource.hs
index d28384e5d..cd374ff41 100644
--- a/src/GF/Compile/MkResource.hs
+++ b/src/GF/Compile/MkResource.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module MkResource where
import Grammar
diff --git a/src/GF/Compile/MkUnion.hs b/src/GF/Compile/MkUnion.hs
index 6c46068a4..f48f9eda2 100644
--- a/src/GF/Compile/MkUnion.hs
+++ b/src/GF/Compile/MkUnion.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module MkUnion (makeUnion) where
import Grammar
diff --git a/src/GF/Compile/ModDeps.hs b/src/GF/Compile/ModDeps.hs
index 60f360746..10f2e012e 100644
--- a/src/GF/Compile/ModDeps.hs
+++ b/src/GF/Compile/ModDeps.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module ModDeps where
import Grammar
diff --git a/src/GF/Compile/NewRename.hs b/src/GF/Compile/NewRename.hs
index 15dd06f0e..1197410ed 100644
--- a/src/GF/Compile/NewRename.hs
+++ b/src/GF/Compile/NewRename.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Rename where
import Grammar
diff --git a/src/GF/Compile/Optimize.hs b/src/GF/Compile/Optimize.hs
index d379a2ecd..ef98e7dab 100644
--- a/src/GF/Compile/Optimize.hs
+++ b/src/GF/Compile/Optimize.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Optimize where
import Grammar
diff --git a/src/GF/Compile/PGrammar.hs b/src/GF/Compile/PGrammar.hs
index 54c152496..02259d30c 100644
--- a/src/GF/Compile/PGrammar.hs
+++ b/src/GF/Compile/PGrammar.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module PGrammar where
---import LexGF
diff --git a/src/GF/Compile/PrOld.hs b/src/GF/Compile/PrOld.hs
index ce1983dd1..a6696e9a4 100644
--- a/src/GF/Compile/PrOld.hs
+++ b/src/GF/Compile/PrOld.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module PrOld where
import PrGrammar
diff --git a/src/GF/Compile/Rebuild.hs b/src/GF/Compile/Rebuild.hs
index 491c9c9f2..815f6aa46 100644
--- a/src/GF/Compile/Rebuild.hs
+++ b/src/GF/Compile/Rebuild.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Rebuild where
import Grammar
diff --git a/src/GF/Compile/RemoveLiT.hs b/src/GF/Compile/RemoveLiT.hs
index 8dfaf412b..17124291d 100644
--- a/src/GF/Compile/RemoveLiT.hs
+++ b/src/GF/Compile/RemoveLiT.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module RemoveLiT (removeLiT) where
import Grammar
diff --git a/src/GF/Compile/Rename.hs b/src/GF/Compile/Rename.hs
index 55708f629..9dd5121c7 100644
--- a/src/GF/Compile/Rename.hs
+++ b/src/GF/Compile/Rename.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Rename where
import Grammar
diff --git a/src/GF/Compile/ShellState.hs b/src/GF/Compile/ShellState.hs
index ae80af572..62ff09863 100644
--- a/src/GF/Compile/ShellState.hs
+++ b/src/GF/Compile/ShellState.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module ShellState where
import Operations
diff --git a/src/GF/Compile/Update.hs b/src/GF/Compile/Update.hs
index ae8dc4aac..e3c4df4bb 100644
--- a/src/GF/Compile/Update.hs
+++ b/src/GF/Compile/Update.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Update where
import Ident