-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial pattern matches in `do`-notation are difficult to single because they desugar down to `case` expressions with overlapping patterns. This is somewhat non-obvious, so make a note of this in the `README`. Bumps the `th-desugar` submodule (and updates a reference to an issue number) while I'm in town.
- Loading branch information
1 parent
56e4676
commit 71b702e
Showing
3 changed files
with
24 additions
and
2 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
Submodule th-desugar
updated
11 files
+5 −0 | CHANGES.md | |
+2 −1 | Language/Haskell/TH/Desugar.hs | |
+305 −0 | Language/Haskell/TH/Desugar/AST.hs | |
+41 −298 | Language/Haskell/TH/Desugar/Core.hs | |
+1 −0 | Language/Haskell/TH/Desugar/Expand.hs | |
+1 −0 | Language/Haskell/TH/Desugar/Match.hs | |
+1 −0 | Language/Haskell/TH/Desugar/Subst.hs | |
+1 −1 | Language/Haskell/TH/Desugar/Sweeten.hs | |
+1 −0 | Test/Run.hs | |
+2 −0 | Test/Splices.hs | |
+2 −1 | th-desugar.cabal |