From 2141a7d6f2f2329cc4945da52629e61b9321c5e6 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Fri, 9 Nov 2007 17:45:19 +0000 Subject: [PATCH] Added AlterAST to FlowGraph's export list --- common/FlowGraph.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/FlowGraph.hs b/common/FlowGraph.hs index a601aef..21b3ef6 100644 --- a/common/FlowGraph.hs +++ b/common/FlowGraph.hs @@ -41,7 +41,7 @@ with this program. If not, see . -- * If statements, on the other hand, have to be chained together. Each expression is connected -- to its body, but also to the next expression. There is no link between the last expression -- and the end of the if; if statements behave like STOP if nothing is matched. -module FlowGraph (EdgeLabel(..), FNode(..), FlowGraph, GraphLabelFuncs(..), buildFlowGraph, makeFlowGraphInstr) where +module FlowGraph (AlterAST(..), EdgeLabel(..), FNode(..), FlowGraph, GraphLabelFuncs(..), buildFlowGraph, makeFlowGraphInstr) where import Control.Monad.Error import Control.Monad.State