-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support versions of haskell-src-exts >= 1.20.0
- Add Pretty implementation of: - UnboxedSum patterns, expressions, and types (since haskell-src-exts 1.20.0). - DerivingVia (since haskell-src-exts 1.21.0). - Typed Template Haskell splices and expressions (since haskell-src-exts 1.22.0). - Update "Pretty Asst" instance to match new "Asst" structure in haskell-src-exts 1.22.0. - Move stackage snapshot to "lts-15.5" and use "MonadFail". - Use "error" in "src/main/Test.hs" instead of "fail" as "SpecM" does not have an instance of MonadFail (yet). - Remove unused functions "isRecord", "recDecl", and "qualConDecl".
- Loading branch information
1 parent
1583be4
commit 7bfe740
Showing
5 changed files
with
158 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
resolver: lts-11.8 | ||
resolver: lts-15.5 | ||
packages: | ||
- '.' | ||
extra-deps: | ||
- haskell-src-exts-1.20.2 | ||
- path-0.5.9 | ||
- path-io-1.2.0 | ||
|
||
allow-newer: True |