summaryrefslogtreecommitdiff
path: root/src/GF/GFCC/Raw/AbsGFCCRaw.hs
blob: ab5f184a8dcefab579a44eb129ce8a30b8fc275e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module GF.GFCC.Raw.AbsGFCCRaw where

-- Haskell module generated by the BNF converter

newtype CId = CId String deriving (Eq,Ord,Show)
data Grammar =
   Grm [RExp]
  deriving (Eq,Ord,Show)

data RExp =
   App CId [RExp]
 | AInt Integer
 | AStr String
 | AFlt Double
 | AMet
  deriving (Eq,Ord,Show)