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
e4740dd8
Commit
e4740dd8
authored
9 years ago
by
Łukasz Hanuszczak
Committed by
Mateusz Kowalczyk
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Create simple utility module for type specialization.
parent
dc25b709
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
haddock-api/haddock-api.cabal
+1
-0
1 addition, 0 deletions
haddock-api/haddock-api.cabal
haddock-api/src/Haddock/Backends/Xhtml/Specialize.hs
+21
-0
21 additions, 0 deletions
haddock-api/src/Haddock/Backends/Xhtml/Specialize.hs
haddock.cabal
+1
-0
1 addition, 0 deletions
haddock.cabal
with
23 additions
and
0 deletions
haddock-api/haddock-api.cabal
+
1
−
0
View file @
e4740dd8
...
...
@@ -75,6 +75,7 @@ library
Haddock.Backends.Xhtml.DocMarkup
Haddock.Backends.Xhtml.Layout
Haddock.Backends.Xhtml.Names
Haddock.Backends.Xhtml.Specialize
Haddock.Backends.Xhtml.Themes
Haddock.Backends.Xhtml.Types
Haddock.Backends.Xhtml.Utils
...
...
This diff is collapsed.
Click to expand it.
haddock-api/src/Haddock/Backends/Xhtml/Specialize.hs
0 → 100644
+
21
−
0
View file @
e4740dd8
{-# LANGUAGE FlexibleContexts #-}
module
Haddock.Backends.Xhtml.Specialize
(
specialize
)
where
import
Haddock.Syb
import
GHC
import
Data.Data
specialize
::
(
Eq
name
,
Data
(
HsType
name
))
=>
name
->
HsType
name
->
HsType
name
->
HsType
name
specialize
name
details
=
everywhere
(
mkT
$
specialize'
name
details
)
specialize'
::
Eq
name
=>
name
->
HsType
name
->
HsType
name
->
HsType
name
specialize'
name
details
(
HsTyVar
name'
)
|
name
==
name'
=
details
specialize'
_
_
typ
=
typ
\ No newline at end of file
This diff is collapsed.
Click to expand it.
haddock.cabal
+
1
−
0
View file @
e4740dd8
...
...
@@ -97,6 +97,7 @@ executable haddock
Haddock.Backends.Xhtml.DocMarkup
Haddock.Backends.Xhtml.Layout
Haddock.Backends.Xhtml.Names
Haddock.Backends.Xhtml.Specialize
Haddock.Backends.Xhtml.Themes
Haddock.Backends.Xhtml.Types
Haddock.Backends.Xhtml.Utils
...
...
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