Skip to content

Commit 74c9937

Browse files
committed
Fix expr binding
1 parent 79ebddc commit 74c9937

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/CoreFn/FromJSON.purs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,7 @@ bindFromJSON modulePath = object \json -> do
203203
bindFromJSON' json = do
204204
ann <- readProp "annotation" json >>= annFromJSON modulePath
205205
ident <- readProp "identifier" json >>= identFromJSON
206-
-- expr <- readProp "expression" >>= exprFromJSON modulePath
207-
expr <- fail $ ForeignError "FIXME"
206+
expr <- readProp "expression" json >>= exprFromJSON modulePath
208207
pure $ Tuple (Tuple ann ident) expr
209208

210209
recordFromJSON

0 commit comments

Comments
 (0)