1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 08:25:19 +03:00

Call gfields without object

This commit is contained in:
Ayman Nadeem 2020-01-21 16:10:50 -05:00
parent c9141c610a
commit c5fc76cb25

View File

@ -39,8 +39,8 @@ instance GMarshalJSON f => GMarshalJSON (M1 D c f) where
gmarshal = gmarshal . unM1 -- using unM1 instead of pattern-matching on M1 in order to express with function composition gmarshal = gmarshal . unM1 -- using unM1 instead of pattern-matching on M1 in order to express with function composition
-- Fold over S1 product types and pass the result to Aeson objects -- Fold over S1 product types and pass the result to Aeson objects
instance GFields fields => GMarshalJSON (C1 c fields) where instance GFields fields => GFields (C1 c fields) where
gmarshal = object . gfields [] . unM1 gfields acc x = gfields acc (unM1 x)
-- TODO: we first see gfields appear where we have constructors because ... -- TODO: we first see gfields appear where we have constructors because ...
-- Implement base case for products -- Implement base case for products