Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
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
Glasgow Haskell Compiler
Packages
Cabal
Commits
27cf519a
Commit
27cf519a
authored
6 years ago
by
Oleg Grenrus
Browse files
Options
Downloads
Patches
Plain Diff
Add Foldable & Traversable Field instances
parent
a21ae5e3
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
Cabal/Distribution/Fields/Field.hs
+6
-4
6 additions, 4 deletions
Cabal/Distribution/Fields/Field.hs
with
6 additions
and
4 deletions
Cabal/Distribution/Fields/Field.hs
+
6
−
4
View file @
27cf519a
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE DeriveFoldable #-}
{-# LANGUAGE DeriveTraversable #-}
-- | Cabal-like file AST types: 'Field', 'Section' etc
--
-- These types are parametrized by an annotation.
...
...
@@ -33,7 +35,7 @@ import qualified Data.Char as Char
data
Field
ann
=
Field
!
(
Name
ann
)
[
FieldLine
ann
]
|
Section
!
(
Name
ann
)
[
SectionArg
ann
]
[
Field
ann
]
deriving
(
Eq
,
Show
,
Functor
)
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | Section of field name
fieldName
::
Field
ann
->
Name
ann
...
...
@@ -56,7 +58,7 @@ fieldUniverse f@(Field _ _) = [f]
--
-- /Invariant:/ 'ByteString' has no newlines.
data
FieldLine
ann
=
FieldLine
!
ann
!
ByteString
deriving
(
Eq
,
Show
,
Functor
)
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | Section arguments, e.g. name of the library
data
SectionArg
ann
...
...
@@ -66,7 +68,7 @@ data SectionArg ann
-- ^ quoted string
|
SecArgOther
!
ann
!
ByteString
-- ^ everything else, mm. operators (e.g. in if-section conditionals)
deriving
(
Eq
,
Show
,
Functor
)
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | Extract annotation from 'SectionArg'.
sectionArgAnn
::
SectionArg
ann
->
ann
...
...
@@ -84,7 +86,7 @@ type FieldName = ByteString
--
-- /Invariant/: 'ByteString' is lower-case ASCII.
data
Name
ann
=
Name
!
ann
!
FieldName
deriving
(
Eq
,
Show
,
Functor
)
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
mkName
::
ann
->
FieldName
->
Name
ann
mkName
ann
bs
=
Name
ann
(
B
.
map
Char
.
toLower
bs
)
...
...
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