We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79ebddc commit 74c9937Copy full SHA for 74c9937
src/CoreFn/FromJSON.purs
@@ -203,8 +203,7 @@ bindFromJSON modulePath = object \json -> do
203
bindFromJSON' json = do
204
ann <- readProp "annotation" json >>= annFromJSON modulePath
205
ident <- readProp "identifier" json >>= identFromJSON
206
- -- expr <- readProp "expression" >>= exprFromJSON modulePath
207
- expr <- fail $ ForeignError "FIXME"
+ expr <- readProp "expression" json >>= exprFromJSON modulePath
208
pure $ Tuple (Tuple ann ident) expr
209
210
recordFromJSON
0 commit comments