úÎ!þ2     None "#02Î dhall-json@Specify whether or not to convert association lists of type #List { mapKey: Text, mapValue : v } to records dhall-jsonYThis 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 dhall-json<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\"}" dhall-jsonOmit record fields that are null  dhall-json-Convert association lists to homogeneous maps.This converts an association list of the form: B[ { mapKey = k0, mapValue = v0 }, { mapKey = k1, mapValue = v1 } ]... to a record of the form: { k0 = v0, k1 = v1 }  dhall-jsonPConvert 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)])  dhall-json2Describe the input for the sake of error location. dhall-json Input text.        'dhall-json-1.2.5-8200ewpkIe8DEOhktB2WaF Dhall.JSON Conversion NoConversionmapKeymapValue CompileError Unsupported dhallToJSONomitNullconvertToHomogeneousMapsparseConversion codeToValue$fExceptionCompileError$fShowCompileError