rename GF.Grammar.Predef.isPredefCat to isLiteralCat

This commit is contained in:
krasimir
2010-06-17 15:08:12 +00:00
parent 183c878173
commit d8b049fdf8
5 changed files with 10 additions and 10 deletions

View File

@@ -24,7 +24,7 @@ module GF.Grammar.Predef
, cErrorType
, cOverload
, cUndefinedType
, isPredefCat
, isLiteralCat
, cPTrue, cPFalse
@@ -88,8 +88,8 @@ cOverload = identC (BS.pack "overload")
cUndefinedType :: Ident
cUndefinedType = identC (BS.pack "UndefinedType")
isPredefCat :: Ident -> Bool
isPredefCat c = elem c [cInt,cString,cFloat]
isLiteralCat :: Ident -> Bool
isLiteralCat c = elem c [cInt,cString,cFloat]
cPTrue :: Ident
cPTrue = identC (BS.pack "PTrue")