{- 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.ImplementationOptions 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.Types.Common

{-|

-}
data ImplementationOptions = ImplementationOptions 
  { {-|

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

instance Aeson.ToJSON ImplementationOptions where
  toJSON :: ImplementationOptions -> Value
toJSON (ImplementationOptions Maybe Bool
arg0) = [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
$  [String
"workDoneProgress" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe Bool
arg0]

instance Aeson.FromJSON ImplementationOptions where
  parseJSON :: Value -> Parser ImplementationOptions
parseJSON = forall a. String -> (Object -> Parser a) -> Value -> Parser a
Aeson.withObject String
"ImplementationOptions" forall a b. (a -> b) -> a -> b
$ \Object
arg -> Maybe Bool -> ImplementationOptions
ImplementationOptions forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"workDoneProgress"