Add a modFunc function to edit a function in the session.
authorMatthijs Kooijman <m.kooijman@student.utwente.nl>
Fri, 13 Feb 2009 08:55:53 +0000 (09:55 +0100)
committerMatthijs Kooijman <m.kooijman@student.utwente.nl>
Fri, 13 Feb 2009 08:55:53 +0000 (09:55 +0100)
TranslatorTypes.hs

index 4ced7de59b5bd5c28a23ebb7a398f322b5251729..72cd3981f97624175c816c50fd094fc330a4b9ae 100644 (file)
@@ -46,6 +46,12 @@ setFlatFunc hsfunc flatfunc = do
   let fs'= Map.adjust (\d -> d { flatFunc = Just flatfunc }) hsfunc fs
   State.modify (\x -> x {funcs = fs' })
 
+modFunc :: HsFunction -> (HsFunction -> FuncData -> FuncData) -> VHDLState ()
+modFunc hsfunc f = do
+  fs <- State.gets funcs -- Get the funcs element from the session
+  let fs' = Map.adjustWithKey f hsfunc fs
+  State.modify (\x -> x {funcs = fs' })
+
 getModule :: VHDLState HscTypes.CoreModule
 getModule = State.gets coreMod -- Get the coreMod element from the session