{-# OPTIONS_GHC -fwarn-unused-binds #-}
module Agda.Interaction.Highlighting.FromAbstract
( runHighlighter
, NameKinds
) where
import Prelude hiding (null)
import Control.Applicative
import Control.Monad ( (<=<) )
import Control.Monad.Reader ( MonadReader(..), asks, Reader, runReader )
import qualified Data.Map as Map
import Data.Maybe
import Data.Semigroup ( Semigroup(..) )
import Data.Void ( Void )
import Agda.Interaction.Highlighting.Precise hiding ( singleton )
import qualified Agda.Interaction.Highlighting.Precise as H
import Agda.Interaction.Highlighting.Range ( rToR )
import Agda.Syntax.Abstract ( IsProjP(..) )
import qualified Agda.Syntax.Abstract as A
import Agda.Syntax.Common as Common
import Agda.Syntax.Concrete ( FieldAssignment'(..) )
import qualified Agda.Syntax.Concrete.Name as C
import Agda.Syntax.Info ( ModuleInfo(..) )
import Agda.Syntax.Literal
import qualified Agda.Syntax.Position as P
import Agda.Syntax.Position ( Range, HasRange, getRange, noRange )
import Agda.Syntax.Scope.Base ( AbstractName(..), ResolvedName(..), exactConName )
import Agda.TypeChecking.Monad
hiding (ModuleInfo, MetaInfo, Primitive, Constructor, Record, Function, Datatype)
import Agda.Utils.FileName
import Agda.Utils.Function
import Agda.Utils.Functor
import Agda.Utils.List ( initLast1 )
import Agda.Utils.List1 ( List1 )
import qualified Agda.Utils.List1 as List1
import Agda.Utils.Maybe
import qualified Agda.Utils.Maybe.Strict as Strict
import Agda.Utils.Pretty
import Agda.Utils.Singleton
runHighlighter ::
Hilite a =>
SourceToModule -> AbsolutePath -> NameKinds -> a ->
HighlightingInfoBuilder
runHighlighter :: SourceToModule
-> AbsolutePath -> NameKinds -> a -> HighlightingInfoBuilder
runHighlighter SourceToModule
modMap AbsolutePath
fileName NameKinds
kinds a
x =
Reader HiliteEnv HighlightingInfoBuilder
-> HiliteEnv -> HighlightingInfoBuilder
forall r a. Reader r a -> r -> a
runReader (a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
x) (HiliteEnv -> HighlightingInfoBuilder)
-> HiliteEnv -> HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$
HiliteEnv :: NameKinds -> SourceToModule -> AbsolutePath -> HiliteEnv
HiliteEnv
{ hleNameKinds :: NameKinds
hleNameKinds = NameKinds
kinds
, hleModMap :: SourceToModule
hleModMap = SourceToModule
modMap
, hleFileName :: AbsolutePath
hleFileName = AbsolutePath
fileName
}
data HiliteEnv = HiliteEnv
{ HiliteEnv -> NameKinds
hleNameKinds :: NameKinds
, HiliteEnv -> SourceToModule
hleModMap :: SourceToModule
, HiliteEnv -> AbsolutePath
hleFileName :: AbsolutePath
}
type NameKinds = A.QName -> Maybe NameKind
type HiliteM = Reader HiliteEnv
type Hiliter = HiliteM HighlightingInfoBuilder
instance Monoid Hiliter where
mempty :: Reader HiliteEnv HighlightingInfoBuilder
mempty = HighlightingInfoBuilder -> Reader HiliteEnv HighlightingInfoBuilder
forall (f :: * -> *) a. Applicative f => a -> f a
pure HighlightingInfoBuilder
forall a. Monoid a => a
mempty
mappend :: Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
mappend = Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
(<>)
class Hilite a where
hilite :: a -> Hiliter
default hilite :: (Foldable t, Hilite b, t b ~ a) => a -> Hiliter
hilite = (b -> Reader HiliteEnv HighlightingInfoBuilder)
-> t b -> Reader HiliteEnv HighlightingInfoBuilder
forall (t :: * -> *) m a.
(Foldable t, Monoid m) =>
(a -> m) -> t a -> m
foldMap b -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite
instance Hilite a => Hilite [a]
instance Hilite a => Hilite (List1 a)
instance Hilite a => Hilite (Maybe a)
instance Hilite a => Hilite (WithHiding a)
instance Hilite Void where
hilite :: Void -> Reader HiliteEnv HighlightingInfoBuilder
hilite Void
_ = Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
instance (Hilite a, Hilite b) => Hilite (Either a b) where
hilite :: Either a b -> Reader HiliteEnv HighlightingInfoBuilder
hilite = (a -> Reader HiliteEnv HighlightingInfoBuilder)
-> (b -> Reader HiliteEnv HighlightingInfoBuilder)
-> Either a b
-> Reader HiliteEnv HighlightingInfoBuilder
forall a c b. (a -> c) -> (b -> c) -> Either a b -> c
either a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite b -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite
instance (Hilite a, Hilite b) => Hilite (a, b) where
hilite :: (a, b) -> Reader HiliteEnv HighlightingInfoBuilder
hilite (a
a, b
b) = a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
a Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> b -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite b
b
instance Hilite A.RecordDirectives where
hilite :: RecordDirectives -> Reader HiliteEnv HighlightingInfoBuilder
hilite (RecordDirectives Maybe (Ranged Induction)
_ Maybe HasEta0
_ Maybe Range
_ Maybe QName
c) = Maybe QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Maybe QName
c
instance Hilite A.Declaration where
hilite :: Declaration -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.Axiom KindOfName
_ax DefInfo
_di ArgInfo
ai Maybe [Occurrence]
_occ QName
x Expr
e -> ArgInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ArgInfo
ai Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.Generalize Set QName
_names DefInfo
_di ArgInfo
ai QName
x Expr
e -> ArgInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ArgInfo
ai Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.Field DefInfo
_di QName
x Arg Expr
e -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hlField QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Arg Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Arg Expr
e
A.Primitive DefInfo
_di QName
x Arg Expr
e -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Arg Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Arg Expr
e
A.Mutual MutualInfo
_mi [Declaration]
ds -> [Declaration] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Declaration]
ds
A.Section Range
_r ModuleName
x GeneralizeTelescope
tel [Declaration]
ds -> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> GeneralizeTelescope -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl GeneralizeTelescope
tel Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Declaration] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Declaration]
ds
A.Apply ModuleInfo
mi ModuleName
x ModuleApplication
a ScopeCopyInfo
_ci ImportDirective
dir -> ModuleInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleInfo
mi Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleApplication -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleApplication
a Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ImportDirective -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ImportDirective
dir
A.Import ModuleInfo
mi ModuleName
x ImportDirective
dir -> ModuleInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleInfo
mi Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ImportDirective -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ImportDirective
dir
A.Open ModuleInfo
mi ModuleName
x ImportDirective
dir -> ModuleInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleInfo
mi Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ImportDirective -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ImportDirective
dir
A.FunDef DefInfo
_di QName
x Delayed
_delayed [Clause]
cs -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Clause] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Clause]
cs
A.DataSig DefInfo
_di QName
x GeneralizeTelescope
tel Expr
e -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> GeneralizeTelescope -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl GeneralizeTelescope
tel Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.DataDef DefInfo
_di QName
x UniverseCheck
_uc DataDefParams
pars [Declaration]
cs -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> DataDefParams -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl DataDefParams
pars Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Declaration] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Declaration]
cs
A.RecSig DefInfo
_di QName
x GeneralizeTelescope
tel Expr
e -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> GeneralizeTelescope -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl GeneralizeTelescope
tel Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.RecDef DefInfo
_di QName
x UniverseCheck
_uc RecordDirectives
dir DataDefParams
bs Expr
e [Declaration]
ds -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> RecordDirectives -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl RecordDirectives
dir Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> DataDefParams -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl DataDefParams
bs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Declaration] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Declaration]
ds
A.PatternSynDef QName
x [Arg BindName]
xs Pattern' Void
p -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Arg BindName] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Arg BindName]
xs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Pattern' Void -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Pattern' Void
p
A.UnquoteDecl MutualInfo
_mi [DefInfo]
_di [QName]
xs Expr
e -> [QName] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [QName]
xs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.UnquoteDef [DefInfo]
_di [QName]
xs Expr
e -> [QName] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [QName]
xs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.ScopedDecl ScopeInfo
s [Declaration]
ds -> [Declaration] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Declaration]
ds
A.Pragma Range
_r Pragma
pragma -> Pragma -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Pragma
pragma
where
hl :: a -> Reader HiliteEnv HighlightingInfoBuilder
hl a
a = a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
a
hlField :: QName -> Reader HiliteEnv HighlightingInfoBuilder
hlField QName
x = [Name]
-> Name -> Maybe Range -> Reader HiliteEnv HighlightingInfoBuilder
hiliteField (QName -> [Name]
concreteQualifier QName
x) (QName -> Name
concreteBase QName
x) (Range -> Maybe Range
forall a. a -> Maybe a
Just (Range -> Maybe Range) -> Range -> Maybe Range
forall a b. (a -> b) -> a -> b
$ QName -> Range
bindingSite QName
x)
instance Hilite A.Pragma where
hilite :: Pragma -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.OptionsPragma [String]
_strings -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.BuiltinPragma RString
b ResolvedName
x -> Aspect -> RString -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Keyword RString
b Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ResolvedName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite ResolvedName
x
A.BuiltinNoDefPragma RString
b KindOfName
k QName
x -> Aspect -> RString -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Keyword RString
b Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Maybe NameKind -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteQName (NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just (NameKind -> Maybe NameKind) -> NameKind -> Maybe NameKind
forall a b. (a -> b) -> a -> b
$ KindOfName -> NameKind
kindOfNameToNameKind KindOfName
k) QName
x
A.CompilePragma RString
b QName
x String
_foreign -> Aspect -> RString -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Keyword RString
b Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x
A.RewritePragma Range
r [QName]
xs -> Aspect -> Range -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Keyword Range
r Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [QName] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [QName]
xs
A.StaticPragma QName
x -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x
A.EtaPragma QName
x -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x
A.InjectivePragma QName
x -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x
A.InlinePragma Bool
_inline QName
x -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x
A.DisplayPragma QName
x [NamedArg Pattern]
ps Expr
e -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [NamedArg Pattern] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [NamedArg Pattern]
ps Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Expr
e
instance Hilite A.Expr where
hilite :: Expr -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.Var Name
x -> BindName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl (BindName -> Reader HiliteEnv HighlightingInfoBuilder)
-> BindName -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Name -> BindName
A.BindName Name
x
A.Def' QName
q Suffix
_ -> Maybe NameKind -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteQName Maybe NameKind
forall a. Maybe a
Nothing QName
q
A.Proj ProjOrigin
_o AmbiguousQName
qs -> Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName Maybe NameKind
forall a. Maybe a
Nothing AmbiguousQName
qs
A.Con AmbiguousQName
qs -> Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName Maybe NameKind
forall a. Maybe a
Nothing AmbiguousQName
qs
A.PatternSyn AmbiguousQName
qs -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hilitePatternSynonym AmbiguousQName
qs
A.Macro QName
q -> Maybe NameKind -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteQName (NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just NameKind
Macro) QName
q
A.Lit ExprInfo
_r Literal
l -> Literal -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Literal
l
A.QuestionMark MetaInfo
_mi InteractionId
_ii -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.Underscore MetaInfo
_mi -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.Dot ExprInfo
_r Expr
e -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.App AppInfo
_r Expr
e NamedArg Expr
es -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> NamedArg Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl NamedArg Expr
es
A.WithApp ExprInfo
_r Expr
e [Expr]
es -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Expr] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Expr]
es
A.Lam ExprInfo
_r LamBinding
bs Expr
e -> LamBinding -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl LamBinding
bs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.AbsurdLam ExprInfo
_r Hiding
_h -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.ExtendedLam ExprInfo
_r DefInfo
_di Erased
_e QName
_q List1 Clause
cs -> List1 Clause -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl List1 Clause
cs
A.Pi ExprInfo
_r Telescope1
tel Expr
b -> Telescope1 -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Telescope1
tel Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
b
A.Generalized Set QName
_qs Expr
e -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.Fun ExprInfo
_r Arg Expr
a Expr
b -> Arg Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Arg Expr
a Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
b
A.Let ExprInfo
_r List1 LetBinding
bs Expr
e -> List1 LetBinding -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl List1 LetBinding
bs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.ETel Telescope
_tel -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.Rec ExprInfo
_r RecordAssigns
ass -> RecordAssigns -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl RecordAssigns
ass
A.RecUpdate ExprInfo
_r Expr
e Assigns
ass -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Assigns -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Assigns
ass
A.ScopedExpr ScopeInfo
_ Expr
e -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.Quote ExprInfo
_r -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.QuoteTerm ExprInfo
_r -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.Unquote ExprInfo
_r -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.DontCare Expr
e -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
where
hl :: a -> Reader HiliteEnv HighlightingInfoBuilder
hl a
a = a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
a
instance (Hilite a, IsProjP a) => Hilite (A.Pattern' a) where
hilite :: Pattern' a -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.VarP BindName
x -> BindName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl BindName
x
A.ConP ConPatInfo
_i AmbiguousQName
qs NAPs a
es -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteInductiveConstructor AmbiguousQName
qs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> NAPs a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl NAPs a
es
A.ProjP PatInfo
_r ProjOrigin
_o AmbiguousQName
qs -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteProjection AmbiguousQName
qs
A.DefP PatInfo
_r AmbiguousQName
qs NAPs a
es -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl AmbiguousQName
qs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> NAPs a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl NAPs a
es
A.WildP PatInfo
_r -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.AsP PatInfo
_r BindName
x Pattern' a
p -> BindName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl BindName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Pattern' a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Pattern' a
p
A.DotP PatInfo
r a
e -> case a -> Maybe (ProjOrigin, AmbiguousQName)
forall a. IsProjP a => a -> Maybe (ProjOrigin, AmbiguousQName)
isProjP a
e of
Maybe (ProjOrigin, AmbiguousQName)
Nothing -> OtherAspect -> PatInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
OtherAspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleOtherAspect OtherAspect
DottedPattern PatInfo
r Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl a
e
Just (ProjOrigin
_o, AmbiguousQName
qs) -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteProjection AmbiguousQName
qs
A.AbsurdP PatInfo
_r -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.LitP PatInfo
_r Literal
l -> Literal -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Literal
l
A.PatternSynP PatInfo
_r AmbiguousQName
qs NAPs a
es -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hilitePatternSynonym AmbiguousQName
qs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> NAPs a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl NAPs a
es
A.RecP PatInfo
_r [FieldAssignment' (Pattern' a)]
ps -> [FieldAssignment' (Pattern' a)]
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [FieldAssignment' (Pattern' a)]
ps
A.EqualP PatInfo
_r [(a, a)]
ps -> [(a, a)] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [(a, a)]
ps
A.WithP PatInfo
_ Pattern' a
p -> Pattern' a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Pattern' a
p
A.AnnP PatInfo
_r a
a Pattern' a
p -> Pattern' a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Pattern' a
p
where
hl :: a -> Reader HiliteEnv HighlightingInfoBuilder
hl a
a = a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
a
instance Hilite Literal where
hilite :: Literal -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
LitNat{} -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
LitWord64{} -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
LitFloat{} -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
LitString{} -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
LitChar{} -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
LitQName QName
x -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
x
LitMeta AbsolutePath
_fileName MetaId
_id -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
instance Hilite A.LHS where
hilite :: LHS -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.LHS LHSInfo
_r LHSCore
lhs) = LHSCore -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite LHSCore
lhs
instance (Hilite a, IsProjP a) => Hilite (A.LHSCore' a) where
hilite :: LHSCore' a -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.LHSHead QName
q [NamedArg (Pattern' a)]
ps -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite QName
q Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [NamedArg (Pattern' a)] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [NamedArg (Pattern' a)]
ps
A.LHSProj AmbiguousQName
q NamedArg (LHSCore' a)
lhs [NamedArg (Pattern' a)]
ps -> NamedArg (LHSCore' a) -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite NamedArg (LHSCore' a)
lhs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite AmbiguousQName
q Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [NamedArg (Pattern' a)] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [NamedArg (Pattern' a)]
ps
A.LHSWith LHSCore' a
lhs [Arg (Pattern' a)]
wps [NamedArg (Pattern' a)]
ps -> LHSCore' a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite LHSCore' a
lhs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Arg (Pattern' a)] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [Arg (Pattern' a)]
wps Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [NamedArg (Pattern' a)] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [NamedArg (Pattern' a)]
ps
instance Hilite A.RHS where
hilite :: RHS -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.RHS Expr
e Maybe Expr
_ce -> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
RHS
A.AbsurdRHS -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
A.WithRHS QName
_q [WithExpr]
es [Clause]
cs -> [WithExpr] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [WithExpr]
es Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [Clause] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [Clause]
cs
A.RewriteRHS [RewriteEqn]
eqs [ProblemEq]
strippedPats RHS
rhs WhereDeclarations
wh -> [RewriteEqn] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [RewriteEqn]
eqs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [ProblemEq] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl [ProblemEq]
strippedPats Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> RHS -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl RHS
rhs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> WhereDeclarations -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl WhereDeclarations
wh
where
hl :: a -> Reader HiliteEnv HighlightingInfoBuilder
hl a
a = a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
a
instance (HasRange n, Hilite p, Hilite e) => Hilite (RewriteEqn' x n p e) where
hilite :: RewriteEqn' x n p e -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
Rewrite List1 (x, e)
es -> NonEmpty e -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (NonEmpty e -> Reader HiliteEnv HighlightingInfoBuilder)
-> NonEmpty e -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ ((x, e) -> e) -> List1 (x, e) -> NonEmpty e
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (x, e) -> e
forall a b. (a, b) -> b
snd List1 (x, e)
es
Invert x
_x List1 (Named n (p, e))
pes -> List1 (Named n (p, e)) -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite List1 (Named n (p, e))
pes
instance Hilite a => Hilite (A.Clause' a) where
hilite :: Clause' a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.Clause a
lhs [ProblemEq]
strippedPats RHS
rhs WhereDeclarations
wh Bool
_catchall) =
a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
lhs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [ProblemEq] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [ProblemEq]
strippedPats Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> RHS -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite RHS
rhs Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> WhereDeclarations -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite WhereDeclarations
wh
instance Hilite A.ProblemEq where
hilite :: ProblemEq -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.ProblemEq Pattern
p Term
_t Dom Type
_dom) = Pattern -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Pattern
p
instance Hilite A.WhereDeclarations where
hilite :: WhereDeclarations -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.WhereDecls Maybe ModuleName
m Maybe Declaration
ds) = Maybe ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Maybe ModuleName
m Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Maybe Declaration -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Maybe Declaration
ds
instance Hilite A.GeneralizeTelescope where
hilite :: GeneralizeTelescope -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.GeneralizeTel Map QName Name
_gen Telescope
tel) = Telescope -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Telescope
tel
instance Hilite A.DataDefParams where
hilite :: DataDefParams -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.DataDefParams Set Name
_gen [LamBinding]
pars) = [LamBinding] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [LamBinding]
pars
instance Hilite A.ModuleApplication where
hilite :: ModuleApplication -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.SectionApp Telescope
tel ModuleName
x [NamedArg Expr]
es -> Telescope -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Telescope
tel Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> [NamedArg Expr] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [NamedArg Expr]
es
A.RecordModuleInstance ModuleName
x -> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite ModuleName
x
instance Hilite A.LetBinding where
hilite :: LetBinding -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.LetBind LetInfo
_r ArgInfo
ai BindName
x Expr
t Expr
e -> ArgInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ArgInfo
ai Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> BindName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl BindName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
t Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.LetPatBind LetInfo
_r Pattern
p Expr
e -> Pattern -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Pattern
p Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl Expr
e
A.LetApply ModuleInfo
mi ModuleName
x ModuleApplication
es ScopeCopyInfo
_ci ImportDirective
dir -> ModuleInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleInfo
mi Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleApplication -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleApplication
es Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ImportDirective -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ImportDirective
dir
A.LetOpen ModuleInfo
mi ModuleName
x ImportDirective
dir -> ModuleInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleInfo
mi Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ModuleName
x Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> ImportDirective -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl ImportDirective
dir
A.LetDeclaredVariable BindName
x -> BindName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hl BindName
x
where
hl :: a -> Reader HiliteEnv HighlightingInfoBuilder
hl a
x = a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
x
instance Hilite A.TypedBinding where
hilite :: TypedBinding -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.TBind Range
_r TacticAttr
tac List1 (NamedArg Binder)
binds Expr
e -> TacticAttr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite TacticAttr
tac Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> List1 (NamedArg Binder) -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite List1 (NamedArg Binder)
binds Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Expr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Expr
e
A.TLet Range
_r List1 LetBinding
binds -> List1 LetBinding -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite List1 LetBinding
binds
instance Hilite A.LamBinding where
hilite :: LamBinding -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
A.DomainFree TacticAttr
tac NamedArg Binder
binds -> TacticAttr -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite TacticAttr
tac Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> NamedArg Binder -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite NamedArg Binder
binds
A.DomainFull TypedBinding
bind -> TypedBinding -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite TypedBinding
bind
instance Hilite a => Hilite (A.Binder' a) where
hilite :: Binder' a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.Binder Maybe Pattern
p a
x) = Maybe Pattern -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Maybe Pattern
p Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
x
instance Hilite A.BindName where
hilite :: BindName -> Reader HiliteEnv HighlightingInfoBuilder
hilite (A.BindName Name
x) = Name -> Reader HiliteEnv HighlightingInfoBuilder
hiliteBound Name
x
instance Hilite a => Hilite (FieldAssignment' a) where
hilite :: FieldAssignment' a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (FieldAssignment Name
x a
e) = [Name]
-> Name -> Maybe Range -> Reader HiliteEnv HighlightingInfoBuilder
hiliteField [] Name
x Maybe Range
forall a. Maybe a
Nothing Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
e
instance (Hilite a, HasRange n) => Hilite (Named n a) where
hilite :: Named n a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (Named Maybe n
mn a
e)
= Reader HiliteEnv HighlightingInfoBuilder
-> (n -> Reader HiliteEnv HighlightingInfoBuilder)
-> Maybe n
-> Reader HiliteEnv HighlightingInfoBuilder
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty (Aspect -> n -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect (Aspect -> n -> Reader HiliteEnv HighlightingInfoBuilder)
-> Aspect -> n -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Maybe NameKind -> Bool -> Aspect
Name (NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just NameKind
Argument) Bool
False) Maybe n
mn
Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
e
instance Hilite a => Hilite (Arg a) where
hilite :: Arg a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (Arg ArgInfo
ai a
e) = ArgInfo -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite ArgInfo
ai Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> a -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite a
e
instance Hilite ArgInfo where
hilite :: ArgInfo -> Reader HiliteEnv HighlightingInfoBuilder
hilite (ArgInfo Hiding
_hiding Modality
modality Origin
_origin FreeVariables
_fv Annotation
_a) = Modality -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Modality
modality
instance Hilite Modality where
hilite :: Modality -> Reader HiliteEnv HighlightingInfoBuilder
hilite (Modality Relevance
_relevance Quantity
quantity Cohesion
_cohesion) = Quantity -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Quantity
quantity
instance Hilite Quantity where
hilite :: Quantity -> Reader HiliteEnv HighlightingInfoBuilder
hilite = Aspect -> Quantity -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Symbol
instance Hilite ModuleInfo where
hilite :: ModuleInfo -> Reader HiliteEnv HighlightingInfoBuilder
hilite (ModuleInfo Range
_r Range
rAsTo Maybe Name
asName Maybe OpenShortHand
_open Maybe ImportDirective
_impDir)
= Aspect -> Range -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Symbol Range
rAsTo
Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Reader HiliteEnv HighlightingInfoBuilder
-> (Name -> Reader HiliteEnv HighlightingInfoBuilder)
-> Maybe Name
-> Reader HiliteEnv HighlightingInfoBuilder
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty Name -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAsName Maybe Name
asName
where
hiliteAsName :: C.Name -> Hiliter
hiliteAsName :: Name -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAsName Name
n = [Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName [] Name
n Range
forall a. Range' a
noRange Maybe Range
forall a. Maybe a
Nothing ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ NameKind -> Bool -> Aspects
nameAsp NameKind
Module
instance (Hilite m, Hilite n, Hilite (RenamingTo m), Hilite (RenamingTo n))
=> Hilite (ImportDirective' m n) where
hilite :: ImportDirective' m n -> Reader HiliteEnv HighlightingInfoBuilder
hilite (ImportDirective Range
_r Using' m n
using HidingDirective' m n
hiding RenamingDirective' m n
renaming Maybe Range
_ropen) =
Using' m n -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite Using' m n
using Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> HidingDirective' m n -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite HidingDirective' m n
hiding Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> RenamingDirective' m n -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite RenamingDirective' m n
renaming
instance (Hilite m, Hilite n) => Hilite (Using' m n) where
hilite :: Using' m n -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
Using' m n
UseEverything -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
Using [ImportedName' m n]
using -> [ImportedName' m n] -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite [ImportedName' m n]
using
instance (Hilite m, Hilite n, Hilite (RenamingTo m), Hilite (RenamingTo n))
=> Hilite (Renaming' m n) where
hilite :: Renaming' m n -> Reader HiliteEnv HighlightingInfoBuilder
hilite (Renaming ImportedName' m n
from ImportedName' m n
to Maybe Fixity
_fixity Range
rangeKwTo)
= ImportedName' m n -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite ImportedName' m n
from
Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> Aspect -> Range -> Reader HiliteEnv HighlightingInfoBuilder
forall a.
HasRange a =>
Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
Symbol Range
rangeKwTo
Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> RenamingTo (ImportedName' m n)
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (ImportedName' m n -> RenamingTo (ImportedName' m n)
forall a. a -> RenamingTo a
RenamingTo ImportedName' m n
to)
instance (Hilite m, Hilite n) => Hilite (ImportedName' m n) where
hilite :: ImportedName' m n -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
ImportedModule n
m -> n -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite n
m
ImportedName m
n -> m -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite m
n
instance Hilite DisambiguatedName where
hilite :: DisambiguatedName -> Reader HiliteEnv HighlightingInfoBuilder
hilite (DisambiguatedName NameKind
k QName
x) = Maybe NameKind -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteQName (NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just NameKind
k) QName
x
instance Hilite ResolvedName where
hilite :: ResolvedName -> Reader HiliteEnv HighlightingInfoBuilder
hilite = \case
VarName Name
x BindingSource
_bindSrc -> Name -> Reader HiliteEnv HighlightingInfoBuilder
hiliteBound Name
x
DefinedName Access
_acc AbstractName
x Suffix
_suffix -> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> QName -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ AbstractName -> QName
anameName AbstractName
x
FieldName List1 AbstractName
xs -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteProjection (AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder)
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ List1 QName -> AmbiguousQName
A.AmbQ (List1 QName -> AmbiguousQName) -> List1 QName -> AmbiguousQName
forall a b. (a -> b) -> a -> b
$ (AbstractName -> QName) -> List1 AbstractName -> List1 QName
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap AbstractName -> QName
anameName List1 AbstractName
xs
ConstructorName Set Induction
i List1 AbstractName
xs -> Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName Maybe NameKind
k (AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder)
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ List1 QName -> AmbiguousQName
A.AmbQ (List1 QName -> AmbiguousQName) -> List1 QName -> AmbiguousQName
forall a b. (a -> b) -> a -> b
$ (AbstractName -> QName) -> List1 AbstractName -> List1 QName
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap AbstractName -> QName
anameName List1 AbstractName
xs
where k :: Maybe NameKind
k = KindOfName -> NameKind
kindOfNameToNameKind (KindOfName -> NameKind) -> Maybe KindOfName -> Maybe NameKind
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Set Induction -> Maybe KindOfName
forall (t :: * -> *). Foldable t => t Induction -> Maybe KindOfName
exactConName Set Induction
i
PatternSynResName List1 AbstractName
xs -> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hilitePatternSynonym (AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder)
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ List1 QName -> AmbiguousQName
A.AmbQ (List1 QName -> AmbiguousQName) -> List1 QName -> AmbiguousQName
forall a b. (a -> b) -> a -> b
$ (AbstractName -> QName) -> List1 AbstractName -> List1 QName
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap AbstractName -> QName
anameName List1 AbstractName
xs
ResolvedName
UnknownName -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
instance Hilite A.QName where
hilite :: QName -> Reader HiliteEnv HighlightingInfoBuilder
hilite = Maybe NameKind -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteQName Maybe NameKind
forall a. Maybe a
Nothing
instance Hilite A.AmbiguousQName where
hilite :: AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hilite = Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName Maybe NameKind
forall a. Maybe a
Nothing
instance Hilite A.ModuleName where
hilite :: ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
hilite m :: ModuleName
m@(A.MName [Name]
xs) = do
SourceToModule
modMap <- (HiliteEnv -> SourceToModule)
-> ReaderT HiliteEnv Identity SourceToModule
forall r (m :: * -> *) a. MonadReader r m => (r -> a) -> m a
asks HiliteEnv -> SourceToModule
hleModMap
(Bool, ModuleName) -> Reader HiliteEnv HighlightingInfoBuilder
hiliteModule (SourceToModule -> Bool
isTopLevelModule SourceToModule
modMap, ModuleName
m)
where
isTopLevelModule :: SourceToModule -> Bool
isTopLevelModule SourceToModule
modMap =
case (Name -> Maybe AbsolutePath) -> [Name] -> [AbsolutePath]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe
((Maybe AbsolutePath -> Maybe AbsolutePath
forall a. Maybe a -> Maybe a
Strict.toLazy (Maybe AbsolutePath -> Maybe AbsolutePath)
-> (Position' (Maybe AbsolutePath) -> Maybe AbsolutePath)
-> Position' (Maybe AbsolutePath)
-> Maybe AbsolutePath
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Position' (Maybe AbsolutePath) -> Maybe AbsolutePath
forall a. Position' a -> a
P.srcFile) (Position' (Maybe AbsolutePath) -> Maybe AbsolutePath)
-> (Name -> Maybe (Position' (Maybe AbsolutePath)))
-> Name
-> Maybe AbsolutePath
forall (m :: * -> *) b c a.
Monad m =>
(b -> m c) -> (a -> m b) -> a -> m c
<=< (Range -> Maybe (Position' (Maybe AbsolutePath))
forall a. Range' a -> Maybe (Position' a)
P.rStart (Range -> Maybe (Position' (Maybe AbsolutePath)))
-> (Name -> Range)
-> Name
-> Maybe (Position' (Maybe AbsolutePath))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Name -> Range
A.nameBindingSite)) [Name]
xs of
AbsolutePath
f : [AbsolutePath]
_ ->
AbsolutePath -> SourceToModule -> Maybe TopLevelModuleName
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup AbsolutePath
f SourceToModule
modMap
Maybe TopLevelModuleName -> Maybe TopLevelModuleName -> Bool
forall a. Eq a => a -> a -> Bool
== TopLevelModuleName -> Maybe TopLevelModuleName
forall a. a -> Maybe a
Just (QName -> TopLevelModuleName
C.toTopLevelModuleName (QName -> TopLevelModuleName) -> QName -> TopLevelModuleName
forall a b. (a -> b) -> a -> b
$ ModuleName -> QName
A.mnameToConcrete ModuleName
m)
[] -> Bool
False
newtype RenamingTo a = RenamingTo a
instance Hilite (RenamingTo A.QName) where
hilite :: RenamingTo QName -> Reader HiliteEnv HighlightingInfoBuilder
hilite (RenamingTo QName
q) = do
Maybe NameKind
kind <- (HiliteEnv -> NameKinds) -> ReaderT HiliteEnv Identity NameKinds
forall r (m :: * -> *) a. MonadReader r m => (r -> a) -> m a
asks HiliteEnv -> NameKinds
hleNameKinds ReaderT HiliteEnv Identity NameKinds
-> (NameKinds -> Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall (m :: * -> *) a b. Functor m => m a -> (a -> b) -> m b
<&> (NameKinds -> NameKinds
forall a b. (a -> b) -> a -> b
$ QName
q)
QName
-> Bool
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteAName QName
q Bool
False ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Maybe NameKind -> Bool -> Aspects
nameAsp' Maybe NameKind
kind
instance Hilite (RenamingTo A.ModuleName) where
hilite :: RenamingTo ModuleName -> Reader HiliteEnv HighlightingInfoBuilder
hilite (RenamingTo (A.MName [Name]
ns)) = ((Name -> Reader HiliteEnv HighlightingInfoBuilder)
-> [Name] -> Reader HiliteEnv HighlightingInfoBuilder)
-> [Name]
-> (Name -> Reader HiliteEnv HighlightingInfoBuilder)
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b c. (a -> b -> c) -> b -> a -> c
flip (Name -> Reader HiliteEnv HighlightingInfoBuilder)
-> [Name] -> Reader HiliteEnv HighlightingInfoBuilder
forall (t :: * -> *) m a.
(Foldable t, Monoid m) =>
(a -> m) -> t a -> m
foldMap [Name]
ns ((Name -> Reader HiliteEnv HighlightingInfoBuilder)
-> Reader HiliteEnv HighlightingInfoBuilder)
-> (Name -> Reader HiliteEnv HighlightingInfoBuilder)
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ \ Name
n ->
[Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName [] (Name -> Name
A.nameConcrete Name
n) Range
forall a. Range' a
noRange Maybe Range
forall a. Maybe a
Nothing ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ NameKind -> Bool -> Aspects
nameAsp NameKind
Module
instance (Hilite (RenamingTo m), Hilite (RenamingTo n))
=> Hilite (RenamingTo (ImportedName' m n)) where
hilite :: RenamingTo (ImportedName' m n)
-> Reader HiliteEnv HighlightingInfoBuilder
hilite (RenamingTo ImportedName' m n
x) = case ImportedName' m n
x of
ImportedModule n
m -> RenamingTo n -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (n -> RenamingTo n
forall a. a -> RenamingTo a
RenamingTo n
m)
ImportedName m
n -> RenamingTo m -> Reader HiliteEnv HighlightingInfoBuilder
forall a. Hilite a => a -> Reader HiliteEnv HighlightingInfoBuilder
hilite (m -> RenamingTo m
forall a. a -> RenamingTo a
RenamingTo m
n)
hiliteQName
:: Maybe NameKind
-> A.QName
-> Hiliter
hiliteQName :: Maybe NameKind -> QName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteQName Maybe NameKind
mkind QName
q
| QName -> Bool
isExtendedLambdaName QName
q = Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
| QName -> Bool
isAbsurdLambdaName QName
q = Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
| Bool
otherwise = do
Maybe NameKind
kind <- Maybe NameKind
-> (NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind))
-> ReaderT HiliteEnv Identity (Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall a b. Maybe a -> (a -> b) -> b -> b
ifJust Maybe NameKind
mkind (Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind))
-> (NameKind -> Maybe NameKind)
-> NameKind
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just) (ReaderT HiliteEnv Identity (Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind))
-> ReaderT HiliteEnv Identity (Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall a b. (a -> b) -> a -> b
$ (HiliteEnv -> NameKinds) -> ReaderT HiliteEnv Identity NameKinds
forall r (m :: * -> *) a. MonadReader r m => (r -> a) -> m a
asks HiliteEnv -> NameKinds
hleNameKinds ReaderT HiliteEnv Identity NameKinds
-> (NameKinds -> Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall (m :: * -> *) a b. Functor m => m a -> (a -> b) -> m b
<&> (NameKinds -> NameKinds
forall a b. (a -> b) -> a -> b
$ QName
q)
QName
-> Bool
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteAName QName
q Bool
True ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Maybe NameKind -> Bool -> Aspects
nameAsp' Maybe NameKind
kind
hiliteAmbiguousQName
:: Maybe NameKind
-> A.AmbiguousQName
-> Hiliter
hiliteAmbiguousQName :: Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName Maybe NameKind
mkind (A.AmbQ List1 QName
qs) = do
Maybe NameKind
kind <- Maybe NameKind
-> (NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind))
-> ReaderT HiliteEnv Identity (Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall a b. Maybe a -> (a -> b) -> b -> b
ifJust Maybe NameKind
mkind (Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind))
-> (NameKind -> Maybe NameKind)
-> NameKind
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just) (ReaderT HiliteEnv Identity (Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind))
-> ReaderT HiliteEnv Identity (Maybe NameKind)
-> ReaderT HiliteEnv Identity (Maybe NameKind)
forall a b. (a -> b) -> a -> b
$ do
NameKinds
kinds <- (HiliteEnv -> NameKinds) -> ReaderT HiliteEnv Identity NameKinds
forall r (m :: * -> *) a. MonadReader r m => (r -> a) -> m a
asks HiliteEnv -> NameKinds
hleNameKinds
Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind))
-> Maybe NameKind -> ReaderT HiliteEnv Identity (Maybe NameKind)
forall a b. (a -> b) -> a -> b
$ [NameKind] -> Maybe NameKind
forall a. [a] -> Maybe a
listToMaybe ([NameKind] -> Maybe NameKind) -> [NameKind] -> Maybe NameKind
forall a b. (a -> b) -> a -> b
$ List1 (Maybe NameKind) -> [NameKind]
forall a. List1 (Maybe a) -> [a]
List1.catMaybes (List1 (Maybe NameKind) -> [NameKind])
-> List1 (Maybe NameKind) -> [NameKind]
forall a b. (a -> b) -> a -> b
$ NameKinds -> List1 QName -> List1 (Maybe NameKind)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap NameKinds
kinds List1 QName
qs
((QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> List1 QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> List1 QName
-> (QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b c. (a -> b -> c) -> b -> a -> c
flip (QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> List1 QName -> Reader HiliteEnv HighlightingInfoBuilder
forall (t :: * -> *) m a.
(Foldable t, Monoid m) =>
(a -> m) -> t a -> m
foldMap List1 QName
qs ((QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> Reader HiliteEnv HighlightingInfoBuilder)
-> (QName -> Reader HiliteEnv HighlightingInfoBuilder)
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ \ QName
q ->
QName
-> Bool
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteAName QName
q Bool
include ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Maybe NameKind -> Bool -> Aspects
nameAsp' Maybe NameKind
kind
where
include :: Bool
include = List1 Range -> Bool
forall a. Eq a => List1 a -> Bool
List1.allEqual (List1 Range -> Bool) -> List1 Range -> Bool
forall a b. (a -> b) -> a -> b
$ (QName -> Range) -> List1 QName -> List1 Range
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap QName -> Range
bindingSite List1 QName
qs
hiliteBound :: A.Name -> Hiliter
hiliteBound :: Name -> Reader HiliteEnv HighlightingInfoBuilder
hiliteBound Name
x =
[Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName [] (Name -> Name
A.nameConcrete Name
x) Range
forall a. Range' a
noRange (Range -> Maybe Range
forall a. a -> Maybe a
Just (Range -> Maybe Range) -> Range -> Maybe Range
forall a b. (a -> b) -> a -> b
$ Name -> Range
A.nameBindingSite Name
x) ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ NameKind -> Bool -> Aspects
nameAsp NameKind
Bound
hiliteInductiveConstructor :: A.AmbiguousQName -> Hiliter
hiliteInductiveConstructor :: AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteInductiveConstructor = Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName (Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder)
-> Maybe NameKind
-> AmbiguousQName
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just (NameKind -> Maybe NameKind) -> NameKind -> Maybe NameKind
forall a b. (a -> b) -> a -> b
$ Induction -> NameKind
Constructor Induction
Inductive
hilitePatternSynonym :: A.AmbiguousQName -> Hiliter
hilitePatternSynonym :: AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hilitePatternSynonym = AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteInductiveConstructor
hiliteProjection :: A.AmbiguousQName -> Hiliter
hiliteProjection :: AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteProjection = Maybe NameKind
-> AmbiguousQName -> Reader HiliteEnv HighlightingInfoBuilder
hiliteAmbiguousQName (NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just NameKind
Field)
hiliteField :: [C.Name] -> C.Name -> Maybe Range -> Hiliter
hiliteField :: [Name]
-> Name -> Maybe Range -> Reader HiliteEnv HighlightingInfoBuilder
hiliteField [Name]
xs Name
x Maybe Range
bindingR = [Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName [Name]
xs Name
x Range
forall a. Range' a
noRange Maybe Range
bindingR ((Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder)
-> (Bool -> Aspects) -> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ NameKind -> Bool -> Aspects
nameAsp NameKind
Field
hiliteModule :: (Bool, A.ModuleName) -> Hiliter
hiliteModule :: (Bool, ModuleName) -> Reader HiliteEnv HighlightingInfoBuilder
hiliteModule (Bool
isTopLevelModule, A.MName []) = Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
hiliteModule (Bool
isTopLevelModule, A.MName (Name
n:[Name]
ns)) =
[Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName
((Name -> Name) -> [Name] -> [Name]
forall a b. (a -> b) -> [a] -> [b]
map Name -> Name
A.nameConcrete [Name]
ms)
(Name -> Name
A.nameConcrete Name
m)
Range
forall a. Range' a
noRange
Maybe Range
mR
(NameKind -> Bool -> Aspects
nameAsp NameKind
Module)
where
([Name]
ms, Name
m) = Name -> [Name] -> ([Name], Name)
forall a. a -> [a] -> ([a], a)
initLast1 Name
n [Name]
ns
mR :: Maybe Range
mR = Range -> Maybe Range
forall a. a -> Maybe a
Just (Range -> Maybe Range) -> Range -> Maybe Range
forall a b. (a -> b) -> a -> b
$
Bool -> (Range -> Range) -> Range -> Range
forall a. Bool -> (a -> a) -> a -> a
applyWhen Bool
isTopLevelModule Range -> Range
P.beginningOfFile (Range -> Range) -> Range -> Range
forall a b. (a -> b) -> a -> b
$
Name -> Range
A.nameBindingSite Name
m
hiliteCName
:: [C.Name]
-> C.Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Hiliter
hiliteCName :: [Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName [Name]
xs Name
x Range
fr Maybe Range
mR Bool -> Aspects
asp = do
HiliteEnv NameKinds
_ SourceToModule
modMap AbsolutePath
fileName <- ReaderT HiliteEnv Identity HiliteEnv
forall r (m :: * -> *). MonadReader r m => m r
ask
if (Maybe AbsolutePath -> Bool) -> [Maybe AbsolutePath] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all (Maybe AbsolutePath -> Maybe AbsolutePath -> Bool
forall a. Eq a => a -> a -> Bool
== AbsolutePath -> Maybe AbsolutePath
forall a. a -> Maybe a
Strict.Just AbsolutePath
fileName) [Maybe AbsolutePath]
fileNames then HighlightingInfoBuilder -> Reader HiliteEnv HighlightingInfoBuilder
forall (f :: * -> *) a. Applicative f => a -> f a
pure (HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder)
-> HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$
SourceToModule -> HighlightingInfoBuilder
frFile SourceToModule
modMap HighlightingInfoBuilder
-> HighlightingInfoBuilder -> HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<>
Ranges -> Aspects -> HighlightingInfoBuilder
forall a m. IsBasicRangeMap a m => Ranges -> a -> m
H.singleton (Range -> Ranges
rToR Range
rs)
(Aspects
aspects { definitionSite :: Maybe DefinitionSite
definitionSite = SourceToModule -> Maybe DefinitionSite
mFilePos SourceToModule
modMap })
else
Reader HiliteEnv HighlightingInfoBuilder
forall a. Monoid a => a
mempty
where
aspects :: Aspects
aspects = Bool -> Aspects
asp (Bool -> Aspects) -> Bool -> Aspects
forall a b. (a -> b) -> a -> b
$ Name -> Bool
C.isOperator Name
x
fileNames :: [Maybe AbsolutePath]
fileNames = (Name -> Maybe (Maybe AbsolutePath))
-> [Name] -> [Maybe AbsolutePath]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe ((Position' (Maybe AbsolutePath) -> Maybe AbsolutePath)
-> Maybe (Position' (Maybe AbsolutePath))
-> Maybe (Maybe AbsolutePath)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap Position' (Maybe AbsolutePath) -> Maybe AbsolutePath
forall a. Position' a -> a
P.srcFile (Maybe (Position' (Maybe AbsolutePath))
-> Maybe (Maybe AbsolutePath))
-> (Name -> Maybe (Position' (Maybe AbsolutePath)))
-> Name
-> Maybe (Maybe AbsolutePath)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Range -> Maybe (Position' (Maybe AbsolutePath))
forall a. Range' a -> Maybe (Position' a)
P.rStart (Range -> Maybe (Position' (Maybe AbsolutePath)))
-> (Name -> Range)
-> Name
-> Maybe (Position' (Maybe AbsolutePath))
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Name -> Range
forall a. HasRange a => a -> Range
getRange) (Name
x Name -> [Name] -> [Name]
forall a. a -> [a] -> [a]
: [Name]
xs)
frFile :: SourceToModule -> HighlightingInfoBuilder
frFile SourceToModule
modMap = Ranges -> Aspects -> HighlightingInfoBuilder
forall a m. IsBasicRangeMap a m => Ranges -> a -> m
H.singleton (Range -> Ranges
rToR Range
fr) (Aspects
aspects { definitionSite :: Maybe DefinitionSite
definitionSite = DefinitionSite -> DefinitionSite
notHere (DefinitionSite -> DefinitionSite)
-> Maybe DefinitionSite -> Maybe DefinitionSite
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> SourceToModule -> Maybe DefinitionSite
mFilePos SourceToModule
modMap })
rs :: Range
rs = [Name] -> Range
forall a. HasRange a => a -> Range
getRange (Name
x Name -> [Name] -> [Name]
forall a. a -> [a] -> [a]
: [Name]
xs)
notHere :: DefinitionSite -> DefinitionSite
notHere DefinitionSite
d = DefinitionSite
d { defSiteHere :: Bool
defSiteHere = Bool
False }
mFilePos
:: SourceToModule
-> Maybe DefinitionSite
mFilePos :: SourceToModule -> Maybe DefinitionSite
mFilePos SourceToModule
modMap = do
Range
r <- Maybe Range
mR
P.Pn { srcFile :: forall a. Position' a -> a
P.srcFile = Strict.Just AbsolutePath
f, posPos :: forall a. Position' a -> Int32
P.posPos = Int32
p } <- Range -> Maybe (Position' (Maybe AbsolutePath))
forall a. Range' a -> Maybe (Position' a)
P.rStart Range
r
TopLevelModuleName
mod <- AbsolutePath -> SourceToModule -> Maybe TopLevelModuleName
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup AbsolutePath
f SourceToModule
modMap
let qualifiers :: [Name]
qualifiers = Int -> [Name] -> [Name]
forall a. Int -> [a] -> [a]
drop (NonEmpty String -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
length (NonEmpty String -> Int) -> NonEmpty String -> Int
forall a b. (a -> b) -> a -> b
$ TopLevelModuleName -> NonEmpty String
C.moduleNameParts TopLevelModuleName
mod) [Name]
xs
local :: Bool
local = Bool -> (Aspect -> Bool) -> Maybe Aspect -> Bool
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Bool
True Aspect -> Bool
isLocalAspect (Maybe Aspect -> Bool) -> Maybe Aspect -> Bool
forall a b. (a -> b) -> a -> b
$ Aspects -> Maybe Aspect
aspect Aspects
aspects
DefinitionSite -> Maybe DefinitionSite
forall (m :: * -> *) a. Monad m => a -> m a
return (DefinitionSite -> Maybe DefinitionSite)
-> DefinitionSite -> Maybe DefinitionSite
forall a b. (a -> b) -> a -> b
$ DefinitionSite :: TopLevelModuleName -> Int -> Bool -> Maybe String -> DefinitionSite
DefinitionSite
{ defSiteModule :: TopLevelModuleName
defSiteModule = TopLevelModuleName
mod
, defSitePos :: Int
defSitePos = Int32 -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int32
p
, defSiteHere :: Bool
defSiteHere = Range
r Range -> Range -> Bool
forall a. Eq a => a -> a -> Bool
== Name -> Range
forall a. HasRange a => a -> Range
getRange Name
x
, defSiteAnchor :: Maybe String
defSiteAnchor = if Bool
local Bool -> Bool -> Bool
|| Name -> Bool
forall a. IsNoName a => a -> Bool
C.isNoName Name
x Bool -> Bool -> Bool
|| (Name -> Bool) -> [Name] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
any Name -> Bool
forall a. Underscore a => a -> Bool
Common.isUnderscore [Name]
qualifiers
then Maybe String
forall a. Maybe a
Nothing
else String -> Maybe String
forall a. a -> Maybe a
Just (String -> Maybe String) -> String -> Maybe String
forall a b. (a -> b) -> a -> b
$ QName -> String
forall a. Pretty a => a -> String
prettyShow (QName -> String) -> QName -> String
forall a b. (a -> b) -> a -> b
$ (Name -> QName -> QName) -> QName -> [Name] -> QName
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr Name -> QName -> QName
C.Qual (Name -> QName
C.QName Name
x) [Name]
qualifiers
}
isLocalAspect :: Aspect -> Bool
isLocalAspect :: Aspect -> Bool
isLocalAspect = \case
Name (Just NameKind
kind) Bool
_ -> NameKind -> Bool
isLocal NameKind
kind
Aspect
_ -> Bool
True
isLocal :: NameKind -> Bool
isLocal :: NameKind -> Bool
isLocal = \case
NameKind
Bound -> Bool
True
NameKind
Generalizable -> Bool
True
NameKind
Argument -> Bool
True
Constructor{} -> Bool
False
NameKind
Datatype -> Bool
False
NameKind
Field -> Bool
False
NameKind
Function -> Bool
False
NameKind
Module -> Bool
False
NameKind
Postulate -> Bool
False
NameKind
Primitive -> Bool
False
NameKind
Record -> Bool
False
NameKind
Macro -> Bool
False
hiliteAName
:: A.QName
-> Bool
-> (Bool -> Aspects)
-> Hiliter
hiliteAName :: QName
-> Bool
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteAName QName
x Bool
include Bool -> Aspects
asp = do
AbsolutePath
fileName <- (HiliteEnv -> AbsolutePath)
-> ReaderT HiliteEnv Identity AbsolutePath
forall r (m :: * -> *) a. MonadReader r m => (r -> a) -> m a
asks HiliteEnv -> AbsolutePath
hleFileName
[Name]
-> Name
-> Range
-> Maybe Range
-> (Bool -> Aspects)
-> Reader HiliteEnv HighlightingInfoBuilder
hiliteCName (QName -> [Name]
concreteQualifier QName
x)
(QName -> Name
concreteBase QName
x)
(AbsolutePath -> Range
rangeOfFixityDeclaration AbsolutePath
fileName)
(if Bool
include then Range -> Maybe Range
forall a. a -> Maybe a
Just (Range -> Maybe Range) -> Range -> Maybe Range
forall a b. (a -> b) -> a -> b
$ QName -> Range
bindingSite QName
x else Maybe Range
forall a. Maybe a
Nothing)
Bool -> Aspects
asp
Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a. Semigroup a => a -> a -> a
<> (AbsolutePath -> Reader HiliteEnv HighlightingInfoBuilder
notationFile AbsolutePath
fileName)
where
rangeOfFixityDeclaration :: AbsolutePath -> Range
rangeOfFixityDeclaration AbsolutePath
fileName =
if Range -> Maybe AbsolutePath
P.rangeFile Range
r Maybe AbsolutePath -> Maybe AbsolutePath -> Bool
forall a. Eq a => a -> a -> Bool
== AbsolutePath -> Maybe AbsolutePath
forall a. a -> Maybe a
Strict.Just AbsolutePath
fileName
then Range
r else Range
forall a. Range' a
noRange
where
r :: Range
r = Fixity' -> Range
theNameRange (Fixity' -> Range) -> Fixity' -> Range
forall a b. (a -> b) -> a -> b
$ Name -> Fixity'
A.nameFixity (Name -> Fixity') -> Name -> Fixity'
forall a b. (a -> b) -> a -> b
$ QName -> Name
A.qnameName QName
x
notationFile :: AbsolutePath -> Reader HiliteEnv HighlightingInfoBuilder
notationFile AbsolutePath
fileName = HighlightingInfoBuilder -> Reader HiliteEnv HighlightingInfoBuilder
forall (f :: * -> *) a. Applicative f => a -> f a
pure (HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder)
-> HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$
if Range -> Maybe AbsolutePath
P.rangeFile (Notation -> Range
forall a. HasRange a => a -> Range
getRange Notation
notation) Maybe AbsolutePath -> Maybe AbsolutePath -> Bool
forall a. Eq a => a -> a -> Bool
== AbsolutePath -> Maybe AbsolutePath
forall a. a -> Maybe a
Strict.Just AbsolutePath
fileName
then [HighlightingInfoBuilder] -> HighlightingInfoBuilder
forall a. Monoid a => [a] -> a
mconcat ([HighlightingInfoBuilder] -> HighlightingInfoBuilder)
-> [HighlightingInfoBuilder] -> HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ (GenPart -> HighlightingInfoBuilder)
-> Notation -> [HighlightingInfoBuilder]
forall a b. (a -> b) -> [a] -> [b]
map GenPart -> HighlightingInfoBuilder
genPartFile Notation
notation
else HighlightingInfoBuilder
forall a. Monoid a => a
mempty
where
notation :: Notation
notation = Fixity' -> Notation
theNotation (Fixity' -> Notation) -> Fixity' -> Notation
forall a b. (a -> b) -> a -> b
$ Name -> Fixity'
A.nameFixity (Name -> Fixity') -> Name -> Fixity'
forall a b. (a -> b) -> a -> b
$ QName -> Name
A.qnameName QName
x
boundAspect :: Aspects
boundAspect = NameKind -> Bool -> Aspects
nameAsp NameKind
Bound Bool
False
genPartFile :: GenPart -> HighlightingInfoBuilder
genPartFile (BindHole Range
r Ranged Int
i) = [Ranges] -> Aspects -> HighlightingInfoBuilder
forall a hl.
(IsBasicRangeMap a hl, Monoid hl) =>
[Ranges] -> a -> hl
several [Range -> Ranges
rToR Range
r, Range -> Ranges
rToR (Range -> Ranges) -> Range -> Ranges
forall a b. (a -> b) -> a -> b
$ Ranged Int -> Range
forall a. HasRange a => a -> Range
getRange Ranged Int
i] Aspects
boundAspect
genPartFile (NormalHole Range
r NamedArg (Ranged Int)
i) = [Ranges] -> Aspects -> HighlightingInfoBuilder
forall a hl.
(IsBasicRangeMap a hl, Monoid hl) =>
[Ranges] -> a -> hl
several [Range -> Ranges
rToR Range
r, Range -> Ranges
rToR (Range -> Ranges) -> Range -> Ranges
forall a b. (a -> b) -> a -> b
$ NamedArg (Ranged Int) -> Range
forall a. HasRange a => a -> Range
getRange NamedArg (Ranged Int)
i] Aspects
boundAspect
genPartFile WildHole{} = HighlightingInfoBuilder
forall a. Monoid a => a
mempty
genPartFile (IdPart RString
x) = Ranges -> Aspects -> HighlightingInfoBuilder
forall a m. IsBasicRangeMap a m => Ranges -> a -> m
H.singleton (Range -> Ranges
rToR (Range -> Ranges) -> Range -> Ranges
forall a b. (a -> b) -> a -> b
$ RString -> Range
forall a. HasRange a => a -> Range
getRange RString
x) (Bool -> Aspects
asp Bool
False)
singleAspect :: HasRange a => Aspect -> a -> Hiliter
singleAspect :: Aspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleAspect Aspect
a a
x = HighlightingInfoBuilder -> Reader HiliteEnv HighlightingInfoBuilder
forall (f :: * -> *) a. Applicative f => a -> f a
pure (HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder)
-> HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Ranges -> Aspects -> HighlightingInfoBuilder
forall a m. IsBasicRangeMap a m => Ranges -> a -> m
H.singleton (Range -> Ranges
rToR (Range -> Ranges) -> Range -> Ranges
forall a b. (a -> b) -> a -> b
$ a -> Range
forall a. HasRange a => a -> Range
getRange a
x) (Aspects -> HighlightingInfoBuilder)
-> Aspects -> HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Aspects
parserBased { aspect :: Maybe Aspect
aspect = Aspect -> Maybe Aspect
forall a. a -> Maybe a
Just Aspect
a }
singleOtherAspect :: HasRange a => OtherAspect -> a -> Hiliter
singleOtherAspect :: OtherAspect -> a -> Reader HiliteEnv HighlightingInfoBuilder
singleOtherAspect OtherAspect
a a
x = HighlightingInfoBuilder -> Reader HiliteEnv HighlightingInfoBuilder
forall (f :: * -> *) a. Applicative f => a -> f a
pure (HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder)
-> HighlightingInfoBuilder
-> Reader HiliteEnv HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Ranges -> Aspects -> HighlightingInfoBuilder
forall a m. IsBasicRangeMap a m => Ranges -> a -> m
H.singleton (Range -> Ranges
rToR (Range -> Ranges) -> Range -> Ranges
forall a b. (a -> b) -> a -> b
$ a -> Range
forall a. HasRange a => a -> Range
getRange a
x) (Aspects -> HighlightingInfoBuilder)
-> Aspects -> HighlightingInfoBuilder
forall a b. (a -> b) -> a -> b
$ Aspects
parserBased { otherAspects :: Set OtherAspect
otherAspects = OtherAspect -> Set OtherAspect
forall el coll. Singleton el coll => el -> coll
singleton OtherAspect
a }
nameAsp' :: Maybe NameKind -> Bool -> Aspects
nameAsp' :: Maybe NameKind -> Bool -> Aspects
nameAsp' Maybe NameKind
k Bool
isOp = Aspects
parserBased { aspect :: Maybe Aspect
aspect = Aspect -> Maybe Aspect
forall a. a -> Maybe a
Just (Aspect -> Maybe Aspect) -> Aspect -> Maybe Aspect
forall a b. (a -> b) -> a -> b
$ Maybe NameKind -> Bool -> Aspect
Name Maybe NameKind
k Bool
isOp }
nameAsp :: NameKind -> Bool -> Aspects
nameAsp :: NameKind -> Bool -> Aspects
nameAsp = Maybe NameKind -> Bool -> Aspects
nameAsp' (Maybe NameKind -> Bool -> Aspects)
-> (NameKind -> Maybe NameKind) -> NameKind -> Bool -> Aspects
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NameKind -> Maybe NameKind
forall a. a -> Maybe a
Just
concreteBase :: A.QName -> C.Name
concreteBase :: QName -> Name
concreteBase = Name -> Name
A.nameConcrete (Name -> Name) -> (QName -> Name) -> QName -> Name
forall b c a. (b -> c) -> (a -> b) -> a -> c
. QName -> Name
A.qnameName
concreteQualifier :: A.QName -> [C.Name]
concreteQualifier :: QName -> [Name]
concreteQualifier = (Name -> Name) -> [Name] -> [Name]
forall a b. (a -> b) -> [a] -> [b]
map Name -> Name
A.nameConcrete ([Name] -> [Name]) -> (QName -> [Name]) -> QName -> [Name]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ModuleName -> [Name]
A.mnameToList (ModuleName -> [Name]) -> (QName -> ModuleName) -> QName -> [Name]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. QName -> ModuleName
A.qnameModule
bindingSite :: A.QName -> Range
bindingSite :: QName -> Range
bindingSite = Name -> Range
A.nameBindingSite (Name -> Range) -> (QName -> Name) -> QName -> Range
forall b c a. (b -> c) -> (a -> b) -> a -> c
. QName -> Name
A.qnameName