{- ORMOLU_DISABLE -}
{- HLINT ignore -}
-- THIS IS A GENERATED FILE, DO NOT EDIT

{-# OPTIONS_GHC -Wno-unused-imports #-}
{-# OPTIONS_GHC -Wno-unused-matches #-}
{-# OPTIONS_GHC -Wno-deprecations #-}
module Language.LSP.Protocol.Internal.Types.CodeLensRegistrationOptions where

import Control.DeepSeq
import Data.Hashable
import GHC.Generics
import Language.LSP.Protocol.Utils.Misc
import Prettyprinter
import qualified Data.Aeson as Aeson
import qualified Data.Row.Aeson as Aeson
import qualified Data.Row.Hashable as Hashable
import qualified Language.LSP.Protocol.Internal.Types.DocumentSelector
import qualified Language.LSP.Protocol.Types.Common

{-|
Registration options for a `CodeLensRequest`.
-}
data CodeLensRegistrationOptions = CodeLensRegistrationOptions 
  { {-|
  A document selector to identify the scope of the registration. If set to null
  the document selector provided on the client side will be used.
  -}
  CodeLensRegistrationOptions -> DocumentSelector |? Null
_documentSelector :: (Language.LSP.Protocol.Internal.Types.DocumentSelector.DocumentSelector Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Types.Common.Null)
  , {-|

  -}
  CodeLensRegistrationOptions -> Maybe Bool
_workDoneProgress :: (Maybe Bool)
  , {-|
  Code lens has a resolve provider as well.
  -}
  CodeLensRegistrationOptions -> Maybe Bool
_resolveProvider :: (Maybe Bool)
  }
  deriving stock (Int -> CodeLensRegistrationOptions -> ShowS
[CodeLensRegistrationOptions] -> ShowS
CodeLensRegistrationOptions -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [CodeLensRegistrationOptions] -> ShowS
$cshowList :: [CodeLensRegistrationOptions] -> ShowS
show :: CodeLensRegistrationOptions -> String
$cshow :: CodeLensRegistrationOptions -> String
showsPrec :: Int -> CodeLensRegistrationOptions -> ShowS
$cshowsPrec :: Int -> CodeLensRegistrationOptions -> ShowS
Show, CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
$c/= :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
== :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
$c== :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
Eq, Eq CodeLensRegistrationOptions
CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> Ordering
CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> CodeLensRegistrationOptions
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> CodeLensRegistrationOptions
$cmin :: CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> CodeLensRegistrationOptions
max :: CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> CodeLensRegistrationOptions
$cmax :: CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> CodeLensRegistrationOptions
>= :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
$c>= :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
> :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
$c> :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
<= :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
$c<= :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
< :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
$c< :: CodeLensRegistrationOptions -> CodeLensRegistrationOptions -> Bool
compare :: CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> Ordering
$ccompare :: CodeLensRegistrationOptions
-> CodeLensRegistrationOptions -> Ordering
Ord, forall x.
Rep CodeLensRegistrationOptions x -> CodeLensRegistrationOptions
forall x.
CodeLensRegistrationOptions -> Rep CodeLensRegistrationOptions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep CodeLensRegistrationOptions x -> CodeLensRegistrationOptions
$cfrom :: forall x.
CodeLensRegistrationOptions -> Rep CodeLensRegistrationOptions x
Generic)
  deriving anyclass (CodeLensRegistrationOptions -> ()
forall a. (a -> ()) -> NFData a
rnf :: CodeLensRegistrationOptions -> ()
$crnf :: CodeLensRegistrationOptions -> ()
NFData, Eq CodeLensRegistrationOptions
Int -> CodeLensRegistrationOptions -> Int
CodeLensRegistrationOptions -> Int
forall a. Eq a -> (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: CodeLensRegistrationOptions -> Int
$chash :: CodeLensRegistrationOptions -> Int
hashWithSalt :: Int -> CodeLensRegistrationOptions -> Int
$chashWithSalt :: Int -> CodeLensRegistrationOptions -> Int
Hashable)
  deriving forall ann. [CodeLensRegistrationOptions] -> Doc ann
forall ann. CodeLensRegistrationOptions -> Doc ann
forall a.
(forall ann. a -> Doc ann)
-> (forall ann. [a] -> Doc ann) -> Pretty a
prettyList :: forall ann. [CodeLensRegistrationOptions] -> Doc ann
$cprettyList :: forall ann. [CodeLensRegistrationOptions] -> Doc ann
pretty :: forall ann. CodeLensRegistrationOptions -> Doc ann
$cpretty :: forall ann. CodeLensRegistrationOptions -> Doc ann
Pretty via (ViaJSON CodeLensRegistrationOptions)

instance Aeson.ToJSON CodeLensRegistrationOptions where
  toJSON :: CodeLensRegistrationOptions -> Value
toJSON (CodeLensRegistrationOptions DocumentSelector |? Null
arg0 Maybe Bool
arg1 Maybe Bool
arg2) = [Pair] -> Value
Aeson.object forall a b. (a -> b) -> a -> b
$ forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat forall a b. (a -> b) -> a -> b
$  [[Key
"documentSelector" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Aeson..= DocumentSelector |? Null
arg0]
    ,String
"workDoneProgress" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe Bool
arg1
    ,String
"resolveProvider" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe Bool
arg2]

instance Aeson.FromJSON CodeLensRegistrationOptions where
  parseJSON :: Value -> Parser CodeLensRegistrationOptions
parseJSON = forall a. String -> (Object -> Parser a) -> Value -> Parser a
Aeson.withObject String
"CodeLensRegistrationOptions" forall a b. (a -> b) -> a -> b
$ \Object
arg -> (DocumentSelector |? Null)
-> Maybe Bool -> Maybe Bool -> CodeLensRegistrationOptions
CodeLensRegistrationOptions forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Object
arg forall a. FromJSON a => Object -> Key -> Parser a
Aeson..: Key
"documentSelector" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"workDoneProgress" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"resolveProvider"