diff options
author | GHC GitLab CI <ghc-ci@gitlab-haskell.org> | 2021-03-23 08:32:31 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-03-25 04:53:16 -0400 |
commit | 1350a5cd730f1cbbe306b849def26bfcd119c103 (patch) | |
tree | 45c8b4ef2cd4b09d6f9a24da905a1be5ff5ee616 /compiler/GHC/Driver/Backpack.hs | |
parent | 0029df2bd52aa7f93e2254a369428e4261e5d3ae (diff) | |
download | haskell-1350a5cd730f1cbbe306b849def26bfcd119c103.tar.gz |
EPA : Remove ApiAnn from ParsedModule
All the comments are now captured in the AST, there is no need for a
side-channel structure for them.
Diffstat (limited to 'compiler/GHC/Driver/Backpack.hs')
-rw-r--r-- | compiler/GHC/Driver/Backpack.hs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/GHC/Driver/Backpack.hs b/compiler/GHC/Driver/Backpack.hs index daf53a502f..07c56bb36a 100644 --- a/compiler/GHC/Driver/Backpack.hs +++ b/compiler/GHC/Driver/Backpack.hs @@ -773,8 +773,7 @@ summariseRequirement pn mod_name = do hsmodDeprecMessage = Nothing, hsmodHaddockModHeader = Nothing }), - hpm_src_files = [], - hpm_annotations = ApiAnns [] + hpm_src_files = [] }), ms_hspp_file = "", -- none, it came inline ms_hspp_opts = dflags, @@ -884,8 +883,7 @@ hsModuleToModSummary pn hsc_src modname -- This is our hack to get the parse tree to the right spot ms_parsed_mod = Just (HsParsedModule { hpm_module = hsmod, - hpm_src_files = [], -- TODO if we preprocessed it - hpm_annotations = ApiAnns [] -- BOGUS + hpm_src_files = [] -- TODO if we preprocessed it }), ms_hs_date = time, ms_obj_date = Nothing, -- TODO do this, but problem: hi_timestamp is BOGUS |