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
6be6ca76
Commit
6be6ca76
authored
9 years ago
by
Łukasz Hanuszczak
Committed by
Mateusz Kowalczyk
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Get rid of code duplication in type specialization module.
parent
060b986c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
haddock-api/src/Haddock/Backends/Xhtml/Specialize.hs
+12
-18
12 additions, 18 deletions
haddock-api/src/Haddock/Backends/Xhtml/Specialize.hs
with
12 additions
and
18 deletions
haddock-api/src/Haddock/Backends/Xhtml/Specialize.hs
+
12
−
18
View file @
6be6ca76
...
...
@@ -47,32 +47,26 @@ specializeTyVarBndrs bndrs typs =
bname
(
KindedTyVar
(
L
_
name
)
_
)
=
name
sugar
::
(
NamedThing
name
,
DataId
name
)
=>
HsType
name
->
HsType
name
sugar
=
sugarTuples
.
sugarLists
sugarLists
::
forall
name
.
(
NamedThing
name
,
DataId
name
)
=>
HsType
name
->
HsType
name
sugarLists
=
everywhere
$
mkT
(
sugarListsStep
::
HsType
name
->
HsType
name
)
sugar
::
forall
name
.
(
NamedThing
name
,
DataId
name
)
=>
HsType
name
->
HsType
name
sugar
=
everywhere
$
mkT
step
where
step
::
HsType
name
->
HsType
name
step
=
sugarTuples
.
sugarLists
sugarLists
Step
::
NamedThing
name
=>
HsType
name
->
HsType
name
sugarLists
Step
(
HsAppTy
(
L
_
(
HsTyVar
name
))
ltyp
)
sugarLists
::
NamedThing
name
=>
HsType
name
->
HsType
name
sugarLists
(
HsAppTy
(
L
_
(
HsTyVar
name
))
ltyp
)
|
isBuiltInSyntax
name'
&&
strName
==
"[]"
=
HsListTy
ltyp
where
name'
=
getName
name
strName
=
occNameString
.
nameOccName
$
name'
sugarListsStep
typ
=
typ
sugarTuples
::
forall
name
.
(
NamedThing
name
,
DataId
name
)
=>
HsType
name
->
HsType
name
sugarTuples
=
everywhere
$
mkT
(
sugarTuplesStep
::
HsType
name
->
HsType
name
)
sugarLists
typ
=
typ
sugarTuples
Step
::
NamedThing
name
=>
HsType
name
->
HsType
name
sugarTuples
Step
typ
=
sugarTuples
::
NamedThing
name
=>
HsType
name
->
HsType
name
sugarTuples
typ
=
aux
[]
typ
where
aux
apps
(
HsAppTy
(
L
_
ftyp
)
atyp
)
=
aux
(
atyp
:
apps
)
ftyp
...
...
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