Safe Haskell | None |
---|---|
Language | Haskell2010 |
FreeC.Environment.ModuleInterface.Encoder
Contents
Description
This module contains functions for encoding ModuleInterface
s 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
- writeModuleInterface :: (MonadIO r, MonadReporter r) => FilePath -> ModuleInterface -> r ()
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 # | |
Methods toJSON :: Qualid -> Value toEncoding :: Qualid -> Encoding toJSONList :: [Qualid] -> Value toEncodingList :: [Qualid] -> Encoding | |
ToJSON Effect Source # | |
Methods toEncoding :: Effect -> Encoding toJSONList :: [Effect] -> Value toEncodingList :: [Effect] -> Encoding | |
ToJSON QName Source # | |
Methods toEncoding :: QName -> Encoding toJSONList :: [QName] -> Value toEncodingList :: [QName] -> Encoding | |
ToJSON Type Source # | |
Methods toEncoding :: Type -> Encoding toJSONList :: [Type] -> Value toEncodingList :: [Type] -> Encoding | |
ToJSON QName Source # | |
Methods toJSON :: QName -> Value toEncoding :: QName -> Encoding toJSONList :: [QName] -> Value toEncodingList :: [QName] -> Encoding | |
ToJSON ModuleInterface Source # | Serializes a |
Methods toJSON :: ModuleInterface -> Value toEncoding :: ModuleInterface -> Encoding toJSONList :: [ModuleInterface] -> Value toEncodingList :: [ModuleInterface] -> Encoding |