uuagc 0.9.14 → 0.9.15
raw patch · 5 files changed
+9/−4 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- src-derived/Transform.hs +2/−1
- src/CommonTypes.hs +4/−0
- src/Version.hs +1/−1
- uuagc.cabal +1/−1
- uuagc.cabal-for-ghc-6.6 +1/−1
src-derived/Transform.hs view
@@ -312,7 +312,8 @@ cldrn = map (child False) flds ++ map (child True) insts child isVirtual (nm, tp) = let (inh,syn) = case tp of- NT nt _ -> Map.findWithDefault (Map.empty,Map.empty) nt attrs+ NT nt _ -> let nt' = maybe nt id (deforestedNt nt)+ in Map.findWithDefault (Map.empty,Map.empty) nt' attrs _ -> (Map.empty,Map.empty) in Child nm tp inh syn isVirtual in Production con cldrn rules tsigs
src/CommonTypes.hs view
@@ -158,3 +158,7 @@ NT _ args -> args _ -> [] +deforestedNt :: Identifier -> Maybe Identifier+deforestedNt nm+ | take 2 (getName nm) == "T_" = Just (Ident (drop 2 (getName nm)) (getPos nm))+ | otherwise = Nothing
src/Version.hs view
@@ -1,4 +1,4 @@ module Version where banner :: String -banner = "Attribute Grammar compiler / HUT project. Version 0.9.14" +banner = "Attribute Grammar compiler / HUT project. Version 0.9.15"
uuagc.cabal view
@@ -1,7 +1,7 @@ cabal-version: >=1.2 build-type: Simple name: uuagc-version: 0.9.14+version: 0.9.15 license: GPL license-file: LICENSE maintainer: Arie Middelkoop <ariem@cs.uu.nl>
uuagc.cabal-for-ghc-6.6 view
@@ -1,5 +1,5 @@ name: uuagc-version: 0.9.14+version: 0.9.15 license: GPL license-file: LICENSE maintainer: Arie Middelkoop <ariem@cs.uu.nl>