úΑ'None1 ðYThis is the exception type for errors that might arise when translating Dhall to JSONyBecause the majority of Dhall language features do not translate to JSON this just returns the expression that failed<Convert a Dhall expression to the equivalent JSON expression:set -XOverloadedStrings:set -XOverloadedListsimport Dhall.CoreGdhallToJSON (RecordLit [("foo", IntegerLit 1), ("bar", TextLit "ABC")])CRight (Object (fromList [("foo",Number 1.0),("bar",String "ABC")]))fmap Data.Aeson.encode it#Right "{\"foo\":1,\"bar\":\"ABC\"}"Omit record fields that are nullPConvert a piece of Text carrying a Dhall inscription to an equivalent JSON Value:set -XOverloadedStringsimport Dhall.Core,Dhall.JSON.codeToValue "(stdin)" "{ a = 1 }"$Object (fromList [("a",Number 1.0)])2Describe the input for the sake of error location. Input text. (dhall-json-1.0.13-59uZeiWlzPB8I7S5pML4kF Dhall.JSON CompileError Unsupported dhallToJSONomitNull codeToValue$fExceptionCompileError$fShowCompileError