Skip to content
Snippets Groups Projects
Commit 60eb2c02 authored by Alice Brenon's avatar Alice Brenon
Browse files

Keep the best of both worlds, go ToJSONObject -> ToJSON as soon as a :@: is...

Keep the best of both worlds, go ToJSONObject -> ToJSON as soon as a :@: is formed, but forward the ToJSONObject instance too (so that future :@:-extensions can be made and magically get the ToJSON instance while propagating the ToJSONObject instance)
parent 69e07588
No related branches found
No related tags found
No related merge requests found
...@@ -44,10 +44,15 @@ class ToJSONObject a where ...@@ -44,10 +44,15 @@ class ToJSONObject a where
toJSONObject :: a -> Object toJSONObject :: a -> Object
toJSONPairs :: a -> Series toJSONPairs :: a -> Series
instance {-# OVERLAPPABLE #-} (ToJSONObject a, ToJSONObject b) =>
ToJSONObject (a @ b) where
toJSONObject (a :@: b) = toJSONObject a `Object.union` toJSONObject b
toJSONPairs (a :@: b) = toJSONPairs a <> toJSONPairs b
instance {-# OVERLAPPABLE #-} (ToJSONObject a, ToJSONObject b) => instance {-# OVERLAPPABLE #-} (ToJSONObject a, ToJSONObject b) =>
ToJSON (a @ b) where ToJSON (a @ b) where
toJSON (a :@: b) = Object $ toJSONObject a `Object.union` toJSONObject b toJSON = Object . toJSONObject
toEncoding (a :@: b) = pairs $ toJSONPairs a <> toJSONPairs b toEncoding = pairs . toJSONPairs
instance {-# OVERLAPPABLE #-} (FromJSON a, FromJSON b) => FromJSON (a @ b) where instance {-# OVERLAPPABLE #-} (FromJSON a, FromJSON b) => FromJSON (a @ b) where
parseJSON o = (:@:) <$> parseJSON o <*> parseJSON o parseJSON o = (:@:) <$> parseJSON o <*> parseJSON o
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment