mps 2010.1.24.1 → 2010.1.26
raw patch · 3 files changed
+20/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ MPS.TH: here :: QuasiQuoter
Files
- changelog.md +10/−0
- mps.cabal +2/−1
- src/MPS/TH.hs +8/−0
changelog.md view
@@ -1,3 +1,13 @@+2010.1.26+---------++* add back here function++2010.1.24.1+-----------++* compatible with GHC 6.12+ 2009.11.7 ---------
mps.cabal view
@@ -1,5 +1,5 @@ Name: mps-Version: 2010.1.24.1+Version: 2010.1.26 Build-type: Simple Synopsis: simply oo Description: DSL that allows one to write Haskell from left to right@@ -24,4 +24,5 @@ , MPS.Extra , MPS.Env , MPS.Heavy+ , MPS.TH other-modules: MPS.UTF8
+ src/MPS/TH.hs view
@@ -0,0 +1,8 @@+module MPS.TH where++import Language.Haskell.TH.Quote +import Language.Haskell.TH.Syntax +import Language.Haskell.TH.Lib ++here :: QuasiQuoter +here = QuasiQuoter (litE . stringL) (litP . stringL)