úÎÆú     None"#/1v@Specify whether or not to convert association lists of type #List { mapKey: Text, mapValue : v } to recordsYThis 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 null -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 } PConvert 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.2.0-6Z4EziQpcYU3NsnzI6WASX Dhall.JSON Conversion NoConversionmapKeymapValue CompileError Unsupported dhallToJSONomitNullconvertToHomogeneousMapsparseConversion codeToValue$fExceptionCompileError$fShowCompileError