introduce the type synonym Token=String in the PGF API

This commit is contained in:
krasimir
2010-06-29 09:00:41 +00:00
parent 88d7631b62
commit 272dcf6917
6 changed files with 13 additions and 13 deletions

View File

@@ -27,7 +27,6 @@ import qualified Data.Set as Set
--
type Cat = String
type Token = String
data Symbol c t = NonTerminal c | Terminal t
deriving (Eq, Ord, Show)

View File

@@ -13,7 +13,7 @@ import GF.Speech.CFG
import GF.Speech.RegExp
import GF.Speech.SISR as SISR
import GF.Speech.SRG
import PGF (PGF, CId)
import PGF (PGF, CId, Token)
import Control.Monad
import Data.Char (toUpper,toLower)