diff options
| author | hallgren <hallgren@chalmers.se> | 2014-10-20 19:45:43 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2014-10-20 19:45:43 +0000 |
| commit | a9bc1160521a0196ab8407a565b7643fe649f6f6 (patch) | |
| tree | 12f67936bec7e99800cfbefbe5145df2b42e0d29 /src/compiler/GF.hs | |
| parent | 8337a19b40301bfda5dd74c6d975072f168538de (diff) | |
Some small documentation improvements
Diffstat (limited to 'src/compiler/GF.hs')
| -rw-r--r-- | src/compiler/GF.hs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/compiler/GF.hs b/src/compiler/GF.hs index 64c3184c6..dd5cc8b31 100644 --- a/src/compiler/GF.hs +++ b/src/compiler/GF.hs @@ -9,18 +9,22 @@ module GF( module GF.CompileInParallel, module GF.CompileOne, - -- * Abstract syntax, parsing and pretty printing + -- * Abstract syntax, parsing, pretty printing and serialisation module GF.Compile.GetGrammar, module GF.Grammar.Grammar, module GF.Grammar.Macros, module GF.Grammar.Printer, module GF.Infra.Ident, + -- ** Binary serialisation + module GF.Grammar.Binary, -- * Supporting infrastructure and system utilities module GF.Data.Operations, module GF.Infra.UseIO, module GF.Infra.Option, - module GF.System.Console + module GF.System.Console, + -- ** Binary serialisation + Binary,encode,decode,encodeFile,decodeFile ) where import GF.Main import GF.Compiler @@ -35,8 +39,10 @@ import GF.Grammar.Grammar import GF.Grammar.Macros import GF.Grammar.Printer import GF.Infra.Ident +import GF.Grammar.Binary import GF.Data.Operations import GF.Infra.Option import GF.Infra.UseIO import GF.System.Console +import Data.Binary
\ No newline at end of file |
