1
0
forked from GitHub/gf-core

Some work on the haddock documentation

This commit is contained in:
hallgren
2014-10-16 16:28:54 +00:00
parent 070057e695
commit 6375bacc73
5 changed files with 37 additions and 20 deletions

View File

@@ -1,8 +1,8 @@
module GF(
-- * Command line interface
module GF.Main,
module GF.Compiler,
module GF.Interactive,
module GF.Compiler,
-- * Compiling GF grammars
module GF.Compile,
@@ -11,7 +11,10 @@ module GF(
-- * Abstract syntax, parsing and pretty printing
module GF.Compile.GetGrammar,
module GF.Grammar,
module GF.Grammar.Grammar,
module GF.Grammar.Macros,
module GF.Grammar.Printer,
module GF.Infra.Ident,
-- * Supporting infrastructure and system utilities
module GF.Data.Operations,
@@ -28,7 +31,10 @@ import GF.CompileInParallel
import GF.CompileOne
import GF.Compile.GetGrammar
import GF.Grammar
import GF.Grammar.Grammar
import GF.Grammar.Macros
import GF.Grammar.Printer
import GF.Infra.Ident
import GF.Data.Operations
import GF.Infra.Option