diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-09-08 11:17:38 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-17 09:45:36 -0400 |
commit | c662ac7e39a0a2fb85d4ab17ae71d54752d24f39 (patch) | |
tree | 01ec2534a67671f010fb985f00fce1a4cd492f99 /testsuite | |
parent | da60e6276e4b71217e2e75dfa49f2d460b526af3 (diff) | |
download | haskell-c662ac7e39a0a2fb85d4ab17ae71d54752d24f39.tar.gz |
Refactor module dependencies code
* moved deps related code into GHC.Unit.Module.Deps
* refactored Deps module to not export Dependencies constructor to help
maintaining invariants
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/plugins/plugins09.stdout | 2 | ||||
-rw-r--r-- | testsuite/tests/plugins/plugins10.stdout | 2 | ||||
-rw-r--r-- | testsuite/tests/plugins/plugins11.stdout | 2 | ||||
-rw-r--r-- | testsuite/tests/plugins/static-plugins.stdout | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/plugins/plugins09.stdout b/testsuite/tests/plugins/plugins09.stdout index 776f34b5f3..263fc4bb89 100644 --- a/testsuite/tests/plugins/plugins09.stdout +++ b/testsuite/tests/plugins/plugins09.stdout @@ -1,7 +1,7 @@ parsePlugin(a,b) interfacePlugin: Prelude -interfacePlugin: GHC.Float interfacePlugin: GHC.Base +interfacePlugin: GHC.Float typeCheckPlugin (rn) interfacePlugin: GHC.Prim typeCheckPlugin (tc) diff --git a/testsuite/tests/plugins/plugins10.stdout b/testsuite/tests/plugins/plugins10.stdout index 47e7d29b93..9433853494 100644 --- a/testsuite/tests/plugins/plugins10.stdout +++ b/testsuite/tests/plugins/plugins10.stdout @@ -2,8 +2,8 @@ parsePlugin() interfacePlugin: Prelude interfacePlugin: Language.Haskell.TH interfacePlugin: Language.Haskell.TH.Quote -interfacePlugin: GHC.Float interfacePlugin: GHC.Base +interfacePlugin: GHC.Float interfacePlugin: Language.Haskell.TH.Syntax typeCheckPlugin (rn) interfacePlugin: GHC.Prim diff --git a/testsuite/tests/plugins/plugins11.stdout b/testsuite/tests/plugins/plugins11.stdout index b3e835f2bf..83f4c1f185 100644 --- a/testsuite/tests/plugins/plugins11.stdout +++ b/testsuite/tests/plugins/plugins11.stdout @@ -1,7 +1,7 @@ parsePlugin() interfacePlugin: Prelude -interfacePlugin: GHC.Float interfacePlugin: GHC.Base +interfacePlugin: GHC.Float typeCheckPlugin (rn) interfacePlugin: GHC.Prim typeCheckPlugin (tc) diff --git a/testsuite/tests/plugins/static-plugins.stdout b/testsuite/tests/plugins/static-plugins.stdout index 65af518b7f..fceea0882a 100644 --- a/testsuite/tests/plugins/static-plugins.stdout +++ b/testsuite/tests/plugins/static-plugins.stdout @@ -1,8 +1,8 @@ ==pure.0 parsePlugin() interfacePlugin: Prelude -interfacePlugin: GHC.Float interfacePlugin: GHC.Base +interfacePlugin: GHC.Float interfacePlugin: System.IO typeCheckPlugin (rn) interfacePlugin: GHC.Prim |