packages feed

buildwrapper 0.8.8 → 0.8.9

raw patch · 2 files changed

+13/−1 lines, 2 files

Files

buildwrapper.cabal view
@@ -1,5 +1,5 @@ name:           buildwrapper-version:        0.8.8+version:        0.8.9 cabal-version:  >= 1.8 build-type:     Simple license:        BSD3
src/Language/Haskell/BuildWrapper/GHC.hs view
@@ -1275,6 +1275,18 @@ tokenType (ITqQuasiQuote {}) = "TH" -- [Qual.quoter| quote |] #endif +-- 7.8 new token types +#if __GLASGOW_HASKELL__ >= 708+tokenType ITjavascriptcallconv = "EK" --  javascript+tokenType ITrole               = "EK" --  role+tokenType ITpattern            = "EK" --  pattern+tokenType ITminimal_prag       = "EK" --  minimal+tokenType ITopenTExpQuote      = "TH" --  [||+tokenType ITcloseTExpQuote     = "TH" --  ||]+tokenType (ITidTyEscape {})    = "TH" --  $$x+tokenType ITparenTyEscape      = "TH" --  $$(+#endif+ -- | a dot as a FastString dotFS :: FastString dotFS = fsLit "."