packages feed

fay 0.23.1.13 → 0.23.1.14

raw patch · 3 files changed

+6/−2 lines, 3 filesdep ~base

Dependency ranges changed: base

Files

CHANGELOG.md view
@@ -2,6 +2,10 @@  See full history at: <https://github.com/faylang/fay/commits> +#### 0.23.1.14++* Fix a compilation error introduced in 0.23.1.13.+ #### 0.23.1.13  * Add support for haskell-src-exts 1.18.1.
fay.cabal view
@@ -1,5 +1,5 @@ name:                fay-version:             0.23.1.13+version:             0.23.1.14 synopsis:            A compiler for Fay, a Haskell subset that compiles to JavaScript. description:         Fay is a proper subset of Haskell which is type-checked                      with GHC, and compiled to JavaScript. It is lazy, pure, has a Fay monad,
src/haskell-names/Language/Haskell/Names/Exports.hs view
@@ -90,7 +90,7 @@             , s             )         Global.Special {} -> error "Global.Special in export list?"-    EThingWith l (EWildcard _ _) _cns -> error "Name resolution: CNames are not supported in wildcard exports"+    EThingWith _ (EWildcard _ _) _qn _cns -> error "Name resolution: CNames are not supported in wildcard exports"     EThingWith l (NoWildcard wcl) qn cns -> return $       case Global.lookupType qn tbl of         Global.Error err ->