free-compiler-0.3.0.0: A Haskell to Coq compiler.

Safe HaskellNone
LanguageHaskell2010

FreeC.Environment.ModuleInterface.Encoder

Contents

Description

This module contains functions for encoding ModuleInterfaces in JSON and writing them to .json files.

Encoding module interfaces as TOML files is not supported, since TOML is intended for human maintained configuration files (e.g., the module interface of the Prelude) only.

See FreeC.Environment.ModuleInterface.Decoder for more information on the interface file format.

Synopsis

Documentation

writeModuleInterface :: (MonadIO r, MonadReporter r) => FilePath -> ModuleInterface -> r () Source #

Serializes a module interface and writes it to a .json file.

Orphan instances

ToJSON Qualid Source # 
Instance details

Methods

toJSON :: Qualid -> Value

toEncoding :: Qualid -> Encoding

toJSONList :: [Qualid] -> Value

toEncodingList :: [Qualid] -> Encoding

ToJSON Effect Source # 
Instance details

Methods

toJSON :: Effect -> Value

toEncoding :: Effect -> Encoding

toJSONList :: [Effect] -> Value

toEncodingList :: [Effect] -> Encoding

ToJSON QName Source # 
Instance details

Methods

toJSON :: QName -> Value

toEncoding :: QName -> Encoding

toJSONList :: [QName] -> Value

toEncodingList :: [QName] -> Encoding

ToJSON Type Source # 
Instance details

Methods

toJSON :: Type -> Value

toEncoding :: Type -> Encoding

toJSONList :: [Type] -> Value

toEncodingList :: [Type] -> Encoding

ToJSON QName Source # 
Instance details

Methods

toJSON :: QName -> Value

toEncoding :: QName -> Encoding

toJSONList :: [QName] -> Value

toEncodingList :: [QName] -> Encoding

ToJSON ModuleInterface Source #

Serializes a ModuleInterface.

Instance details

Methods

toJSON :: ModuleInterface -> Value

toEncoding :: ModuleInterface -> Encoding

toJSONList :: [ModuleInterface] -> Value

toEncodingList :: [ModuleInterface] -> Encoding