diff options
Diffstat (limited to 'src/PGF.hs')
| -rw-r--r-- | src/PGF.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/PGF.hs b/src/PGF.hs index 3bca42148..8510aafa5 100644 --- a/src/PGF.hs +++ b/src/PGF.hs @@ -41,6 +41,11 @@ module PGF( -- ** Expr Expr, showExpr, readExpr, + mkApp, unApp, + mkStr, unStr, + mkInt, unInt, + mkDouble, unDouble, + -- * Operations -- ** Linearization @@ -106,7 +111,7 @@ import Control.Monad -- | Reads file in Portable Grammar Format and produces -- 'PGF' structure. The file is usually produced with: -- --- > $ gfc --make <grammar file name> +-- > $ gf -make <grammar file name> readPGF :: FilePath -> IO PGF -- | Linearizes given expression as string in the language |
