diff options
author | Gert-Jan Bottu <gertjan.bottu@kuleuven.be> | 2020-03-23 09:36:28 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-21 12:11:31 -0400 |
commit | a9311cd53d33439e8fe79967ba5fb85bcd114fec (patch) | |
tree | 2254ef735a24f9de8d192203a3c6f4871a8b6ae9 /testsuite/tests/printer | |
parent | 55f0e783d234af103cf4e1d51cd31c99961c5abe (diff) | |
download | haskell-a9311cd53d33439e8fe79967ba5fb85bcd114fec.tar.gz |
Explicit Specificity
Implementation for Ticket #16393.
Explicit specificity allows users to manually create inferred type variables,
by marking them with braces.
This way, the user determines which variables can be instantiated through
visible type application.
The additional syntax is included in the parser, allowing users to write
braces in type variable binders (type signatures, data constructors etc).
This information is passed along through the renamer and verified in the
type checker.
The AST for type variable binders, data constructors, pattern synonyms,
partial signatures and Template Haskell has been updated to include the
specificity of type variables.
Minor notes:
- Bumps haddock submodule
- Disables pattern match checking in GHC.Iface.Type with GHC 8.8
Diffstat (limited to 'testsuite/tests/printer')
-rw-r--r-- | testsuite/tests/printer/T14289b.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/printer/T14289c.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/printer/T14289b.hs b/testsuite/tests/printer/T14289b.hs index 3ff39805d6..d35292c5cd 100644 --- a/testsuite/tests/printer/T14289b.hs +++ b/testsuite/tests/printer/T14289b.hs @@ -33,7 +33,7 @@ main Bceomes -[DataD [] Foo_0 [PlainTV a_2] Nothing +[DataD [] Foo_0 [PlainTV a_2 ()] Nothing [NormalC Foo_1 [(Bang NoSourceUnpackedness NoSourceStrictness,VarT a_2)]] [DerivClause Nothing [AppT (AppT (ConT Main.C) (VarT y_6989586621679027885)) diff --git a/testsuite/tests/printer/T14289c.hs b/testsuite/tests/printer/T14289c.hs index 6e58df1a54..adf378c41e 100644 --- a/testsuite/tests/printer/T14289c.hs +++ b/testsuite/tests/printer/T14289c.hs @@ -30,7 +30,7 @@ main ---------------------------------------- Becomes -[DataD [] Foo_0 [PlainTV a_2] Nothing +[DataD [] Foo_0 [PlainTV a_2 ()] Nothing [NormalC Foo_1 [(Bang NoSourceUnpackedness NoSourceStrictness,VarT a_2)]] [DerivClause Nothing [AppT (AppT EqualityT (VarT a_2)) |