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
af0126cf
Commit
af0126cf
authored
1 year ago
by
Bodigrim
Committed by
Mikolaj
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add instance Ord for Field, FieldLine, SectionArg and Name
parent
2fca50ba
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-syntax/src/Distribution/Fields/Field.hs
+13
-0
13 additions, 0 deletions
Cabal-syntax/src/Distribution/Fields/Field.hs
with
13 additions
and
0 deletions
Cabal-syntax/src/Distribution/Fields/Field.hs
+
13
−
0
View file @
af0126cf
...
...
@@ -2,6 +2,7 @@
{-# LANGUAGE DeriveFoldable #-}
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE DeriveTraversable #-}
{-# LANGUAGE StandaloneDeriving #-}
-- | Cabal-like file AST types: 'Field', 'Section' etc
--
...
...
@@ -51,6 +52,9 @@ data Field ann
|
Section
!
(
Name
ann
)
[
SectionArg
ann
]
[
Field
ann
]
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | @since 3.12.0.0
deriving
instance
Ord
ann
=>
Ord
(
Field
ann
)
-- | Section of field name
fieldName
::
Field
ann
->
Name
ann
fieldName
(
Field
n
_
)
=
n
...
...
@@ -73,6 +77,9 @@ fieldUniverse f@(Field _ _) = [f]
data
FieldLine
ann
=
FieldLine
!
ann
!
ByteString
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | @since 3.12.0.0
deriving
instance
Ord
ann
=>
Ord
(
FieldLine
ann
)
-- | @since 3.0.0.0
fieldLineAnn
::
FieldLine
ann
->
ann
fieldLineAnn
(
FieldLine
ann
_
)
=
ann
...
...
@@ -91,6 +98,9 @@ data SectionArg ann
SecArgOther
!
ann
!
ByteString
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | @since 3.12.0.0
deriving
instance
Ord
ann
=>
Ord
(
SectionArg
ann
)
-- | Extract annotation from 'SectionArg'.
sectionArgAnn
::
SectionArg
ann
->
ann
sectionArgAnn
(
SecArgName
ann
_
)
=
ann
...
...
@@ -109,6 +119,9 @@ type FieldName = ByteString
data
Name
ann
=
Name
!
ann
!
FieldName
deriving
(
Eq
,
Show
,
Functor
,
Foldable
,
Traversable
)
-- | @since 3.12.0.0
deriving
instance
Ord
ann
=>
Ord
(
Name
ann
)
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