ghc-8.0.1: The GHC API

Safe HaskellNone
LanguageHaskell2010

Plugins

Synopsis

Documentation

data FrontendPlugin Source #

Constructors

FrontendPlugin 

Fields

data Plugin Source #

Plugin is the core compiler plugin data type. Try to avoid constructing one of these directly, and just modify some fields of defaultPlugin instead: this is to try and preserve source-code compatability when we add fields to this.

Nonetheless, this API is preliminary and highly likely to change in the future.

Constructors

Plugin 

Fields

type CommandLineOption = String Source #

Command line options gathered from the -PModule.Name:stuff syntax are given to you as this type

defaultPlugin :: Plugin Source #

Default plugin: does nothing at all! For compatability reasons you should base all your plugin definitions on this default value.