diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-10-30 08:44:34 +0300 |
---|---|---|
committer | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-11-27 11:32:18 +0300 |
commit | 8168b42a95ddf37c56958955eef065eb8747470f (patch) | |
tree | a677a67987372dac9732ea67f6ab37a77c02641a /testsuite/tests/printer/T13942.stdout | |
parent | 5a08f7d405bbedfdc20c07f64726899f594e9d07 (diff) | |
download | haskell-8168b42a95ddf37c56958955eef065eb8747470f.tar.gz |
Whitespace-sensitive bang patterns (#1087, #17162)wip/whitespace-and-lookahead
This patch implements a part of GHC Proposal #229 that covers five
operators:
* the bang operator (!)
* the tilde operator (~)
* the at operator (@)
* the dollar operator ($)
* the double dollar operator ($$)
Based on surrounding whitespace, these operators are disambiguated into
bang patterns, lazy patterns, strictness annotations, type
applications, splices, and typed splices.
This patch doesn't cover the (-) operator or the -Woperator-whitespace
warning, which are left as future work.
Diffstat (limited to 'testsuite/tests/printer/T13942.stdout')
-rw-r--r-- | testsuite/tests/printer/T13942.stdout | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/printer/T13942.stdout b/testsuite/tests/printer/T13942.stdout index 2d0f617074..f40a71bf0f 100644 --- a/testsuite/tests/printer/T13942.stdout +++ b/testsuite/tests/printer/T13942.stdout @@ -1,10 +1,10 @@ -T13942.hs:(5,3)-(7,6): Splicing declarations +T13942.hs:(5,2)-(7,7): Splicing declarations [d| f :: Either Int (Int -> Int) f = undefined |] ======> f :: Either Int (Int -> Int) f = undefined -T13942.ppr.hs:(4,3)-(5,22): Splicing declarations +T13942.ppr.hs:(4,2)-(5,23): Splicing declarations [d| f :: Either Int (Int -> Int) f = undefined |] ======> |