Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haddock
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stephen Judkins
haddock
Commits
1bf42a0c
Commit
1bf42a0c
authored
13 years ago
by
waern
Browse files
Options
Downloads
Patches
Plain Diff
More cleanup.
parent
20c4bfe7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
haddock.cabal
+0
-2
0 additions, 2 deletions
haddock.cabal
src/Haddock/Interface/Create.hs
+25
-16
25 additions, 16 deletions
src/Haddock/Interface/Create.hs
src/Haddock/Interface/ExtractFnArgDocs.hs
+0
-49
0 additions, 49 deletions
src/Haddock/Interface/ExtractFnArgDocs.hs
with
25 additions
and
67 deletions
haddock.cabal
+
0
−
2
View file @
1bf42a0c
...
@@ -109,7 +109,6 @@ executable haddock
...
@@ -109,7 +109,6 @@ executable haddock
Haddock.Interface
Haddock.Interface
Haddock.Interface.Rename
Haddock.Interface.Rename
Haddock.Interface.Create
Haddock.Interface.Create
Haddock.Interface.ExtractFnArgDocs
Haddock.Interface.AttachInstances
Haddock.Interface.AttachInstances
Haddock.Interface.LexParseRn
Haddock.Interface.LexParseRn
Haddock.Interface.ParseModuleHeader
Haddock.Interface.ParseModuleHeader
...
@@ -172,7 +171,6 @@ library
...
@@ -172,7 +171,6 @@ library
Haddock.Interface
Haddock.Interface
Haddock.Interface.Rename
Haddock.Interface.Rename
Haddock.Interface.Create
Haddock.Interface.Create
Haddock.Interface.ExtractFnArgDocs
Haddock.Interface.AttachInstances
Haddock.Interface.AttachInstances
Haddock.Interface.LexParseRn
Haddock.Interface.LexParseRn
Haddock.Interface.ParseModuleHeader
Haddock.Interface.ParseModuleHeader
...
...
This diff is collapsed.
Click to expand it.
src/Haddock/Interface/Create.hs
+
25
−
16
View file @
1bf42a0c
...
@@ -18,7 +18,6 @@ import Haddock.GhcUtils
...
@@ -18,7 +18,6 @@ import Haddock.GhcUtils
import
Haddock.Utils
import
Haddock.Utils
import
Haddock.Convert
import
Haddock.Convert
import
Haddock.Interface.LexParseRn
import
Haddock.Interface.LexParseRn
import
Haddock.Interface.ExtractFnArgDocs
import
qualified
Data.Map
as
Map
import
qualified
Data.Map
as
Map
import
Data.Map
(
Map
)
import
Data.Map
(
Map
)
...
@@ -197,7 +196,7 @@ declInfos dflags gre decls =
...
@@ -197,7 +196,7 @@ declInfos dflags gre decls =
mbDoc
<-
lexParseRnHaddockCommentList
dflags
NormalHaddockComment
mbDoc
<-
lexParseRnHaddockCommentList
dflags
NormalHaddockComment
gre
mbDocString
gre
mbDocString
fnArgsDoc
<-
fmap
(
Map
.
mapMaybe
id
)
$
fnArgsDoc
<-
fmap
(
Map
.
mapMaybe
id
)
$
Traversable
.
forM
(
getDeclFnArg
Docs
d
)
$
Traversable
.
forM
(
type
Docs
d
)
$
\
doc
->
lexParseRnHaddockComment
dflags
NormalHaddockComment
gre
doc
\
doc
->
lexParseRnHaddockComment
dflags
NormalHaddockComment
gre
doc
let
subs_
=
subordinates
d
let
subs_
=
subordinates
d
...
@@ -213,23 +212,16 @@ declInfos dflags gre decls =
...
@@ -213,23 +212,16 @@ declInfos dflags gre decls =
subordinates
::
HsDecl
Name
->
[(
Name
,
MaybeDocStrings
,
Map
Int
HsDocString
)]
subordinates
::
HsDecl
Name
->
[(
Name
,
MaybeDocStrings
,
Map
Int
HsDocString
)]
subordinates
(
TyClD
d
)
=
classDataSubs
d
subordinates
(
TyClD
decl
)
subordinates
_
=
[]
classDataSubs
::
TyClDecl
Name
->
[(
Name
,
MaybeDocStrings
,
Map
Int
HsDocString
)]
classDataSubs
decl
|
isClassDecl
decl
=
classSubs
|
isClassDecl
decl
=
classSubs
|
isDataDecl
decl
=
dataSubs
|
isDataDecl
decl
=
dataSubs
|
otherwise
=
[]
where
where
classSubs
=
[
(
name
,
doc
,
fnArgsDoc
)
classSubs
=
[
(
name
,
doc
,
typeDocs
d
)
|
(
L
_
d
,
doc
)
<-
classDecls
decl
|
(
L
_
d
,
doc
)
<-
classDecls
decl
,
name
<-
getMainDeclBinder
d
,
name
<-
getMainDeclBinder
d
,
let
fnArgsDoc
=
getDeclFnArgDocs
d
]
]
dataSubs
=
constrs
++
fields
dataSubs
=
constrs
++
fields
where
where
cons
=
map
unL
$
tcdCons
decl
cons
=
map
unL
$
tcdCons
decl
-- should we use the type-signature of the constructor
-- should we use the type-signature of the constructor
-- and the docs of the fields to produce fnArgsDoc for the constr,
-- and the docs of the fields to produce fnArgsDoc for the constr,
-- just in case someone exports it without exporting the type
-- just in case someone exports it without exporting the type
...
@@ -239,6 +231,24 @@ classDataSubs decl
...
@@ -239,6 +231,24 @@ classDataSubs decl
fields
=
[
(
unL
n
,
maybeToList
$
fmap
unL
doc
,
Map
.
empty
)
fields
=
[
(
unL
n
,
maybeToList
$
fmap
unL
doc
,
Map
.
empty
)
|
RecCon
flds
<-
map
con_details
cons
|
RecCon
flds
<-
map
con_details
cons
,
ConDeclField
n
_
doc
<-
flds
]
,
ConDeclField
n
_
doc
<-
flds
]
subordinates
_
=
[]
-- | Extract function argument docs from inside types.
typeDocs
::
HsDecl
Name
->
Map
Int
HsDocString
typeDocs
d
=
let
docs
=
go
0
in
case
d
of
SigD
(
TypeSig
_
ty
)
->
docs
(
unLoc
ty
)
ForD
(
ForeignImport
_
ty
_
_
)
->
docs
(
unLoc
ty
)
TyClD
(
TySynonym
{
tcdSynRhs
=
ty
})
->
docs
(
unLoc
ty
)
_
->
Map
.
empty
where
go
n
(
HsForAllTy
_
_
_
ty
)
=
go
n
(
unLoc
ty
)
go
n
(
HsFunTy
(
L
_
(
HsDocTy
_
(
L
_
x
)))
(
L
_
ty
))
=
Map
.
insert
n
x
$
go
(
n
+
1
)
ty
go
n
(
HsFunTy
_
ty
)
=
go
(
n
+
1
)
(
unLoc
ty
)
go
n
(
HsDocTy
_
(
L
_
doc
))
=
Map
.
singleton
n
doc
go
_
_
=
Map
.
empty
-- | All the sub declarations of a class (that we handle), ordered by
-- | All the sub declarations of a class (that we handle), ordered by
...
@@ -259,8 +269,7 @@ topDecls :: HsGroup Name -> [(Decl, MaybeDocStrings)]
...
@@ -259,8 +269,7 @@ topDecls :: HsGroup Name -> [(Decl, MaybeDocStrings)]
topDecls
=
filterClasses
.
filterDecls
.
collectDocs
.
sortByLoc
.
ungroup
topDecls
=
filterClasses
.
filterDecls
.
collectDocs
.
sortByLoc
.
ungroup
-- | Take all declarations except pragmas, infix decls, rules and value
-- | Take all declarations except pragmas, infix decls, rules from an 'HsGroup'.
-- bindings from an 'HsGroup'.
ungroup
::
HsGroup
Name
->
[
Decl
]
ungroup
::
HsGroup
Name
->
[
Decl
]
ungroup
group_
=
ungroup
group_
=
mkDecls
(
concat
.
hs_tyclds
)
TyClD
group_
++
mkDecls
(
concat
.
hs_tyclds
)
TyClD
group_
++
...
...
This diff is collapsed.
Click to expand it.
src/Haddock/Interface/ExtractFnArgDocs.hs
deleted
100644 → 0
+
0
−
49
View file @
20c4bfe7
-----------------------------------------------------------------------------
-- |
-- Module : Haddock.Interface.ExtractFnArgDocs
-- Copyright : (c) Isaac Dupree 2009,
-- License : BSD-like
--
-- Maintainer : haddock@projects.haskell.org
-- Stability : experimental
-- Portability : portable
-----------------------------------------------------------------------------
module
Haddock.Interface.ExtractFnArgDocs
(
getDeclFnArgDocs
,
getSigFnArgDocs
,
getTypeFnArgDocs
)
where
import
Haddock.Types
import
qualified
Data.Map
as
Map
import
Data.Map
(
Map
)
import
GHC
-- the type of Name doesn't matter, except in 6.10 where
-- HsDocString = HsDoc Name, so we can't just say "HsDecl name" yet.
getDeclFnArgDocs
::
HsDecl
Name
->
Map
Int
HsDocString
getDeclFnArgDocs
(
SigD
(
TypeSig
_
ty
))
=
getTypeFnArgDocs
ty
getDeclFnArgDocs
(
ForD
(
ForeignImport
_
ty
_
_
))
=
getTypeFnArgDocs
ty
getDeclFnArgDocs
(
TyClD
(
TySynonym
{
tcdSynRhs
=
ty
}))
=
getTypeFnArgDocs
ty
getDeclFnArgDocs
_
=
Map
.
empty
getSigFnArgDocs
::
Sig
Name
->
Map
Int
HsDocString
getSigFnArgDocs
(
TypeSig
_
ty
)
=
getTypeFnArgDocs
ty
getSigFnArgDocs
_
=
Map
.
empty
getTypeFnArgDocs
::
LHsType
Name
->
Map
Int
HsDocString
getTypeFnArgDocs
ty
=
getLTypeDocs
0
ty
getLTypeDocs
::
Int
->
LHsType
Name
->
Map
Int
HsDocString
getLTypeDocs
n
(
L
_
ty
)
=
getTypeDocs
n
ty
getTypeDocs
::
Int
->
HsType
Name
->
Map
Int
HsDocString
getTypeDocs
n
(
HsForAllTy
_
_
_
ty
)
=
getLTypeDocs
n
ty
getTypeDocs
n
(
HsFunTy
(
L
_
(
HsDocTy
_arg_type
(
L
_
doc
)))
res_type
)
=
Map
.
insert
n
doc
$
getLTypeDocs
(
n
+
1
)
res_type
getTypeDocs
n
(
HsFunTy
_
res_type
)
=
getLTypeDocs
(
n
+
1
)
res_type
getTypeDocs
n
(
HsDocTy
_res_type
(
L
_
doc
))
=
Map
.
singleton
n
doc
getTypeDocs
_
_res_type
=
Map
.
empty
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment