fay-0.16.0.2: A compiler for Fay, a Haskell subset that compiles to JavaScript.

Safe HaskellNone

Fay

Description

Main library entry point.

Synopsis

Documentation

module Fay.Types

compileFileWithState :: CompileConfig -> FilePath -> IO (Either CompileError (String, CompileState))Source

Compile a file returning the state.

compileFromTo :: CompileConfig -> FilePath -> Maybe FilePath -> IO ()Source

Compile the given file and write the output to the given path, or if nothing given, stdout.

compileFromToAndGenerateHtml :: CompileConfig -> FilePath -> FilePath -> IO (Either CompileError String)Source

Compile the given file and write to the output, also generate any HTML.

toJsName :: String -> StringSource

Convert a Haskell filename to a JS filename.

showCompileError :: CompileError -> StringSource

Print a compile error for human consumption.

getRuntime :: IO StringSource

Get the JS runtime source.