[project @ 1999-07-15 09:51:52 by simonmar]
[ghc-hetmet.git] / ghc / compiler / coreSyn / CoreSyn.hi-boot
index c49a4c4..c2fb8bf 100644 (file)
@@ -1,9 +1,14 @@
 _interface_ CoreSyn 1
 _exports_
-CoreSyn CoreExpr ;
+CoreSyn CoreExpr CoreRule CoreRules emptyCoreRules isEmptyCoreRules seqRules ;
 _declarations_
 
 -- Needed by IdInfo
-1 type CoreExpr = GenCoreExpr Id!Id Id!Id BasicTypes.Unused ;
-1 data GenCoreExpr a b c ;
+1 type CoreExpr = Expr Var.IdOrTyVar;
+1 data Expr b ;
 
+1 data CoreRule ;
+1 data CoreRules = Rules [CoreRule] VarSet.IdOrTyVarSet ;;
+1 emptyCoreRules _:_ CoreRules ;;
+1 seqRules _:_ CoreRules -> PrelBase.() ;;
+1 isEmptyCoreRules _:_ CoreRules -> PrelBase.Bool ;;