parsley-garnish-1.0.0.0: A collection of GHC plugins to work with parsley
LicenseBSD-3-CLAUSE
MaintainerJamie Willis
Stabilitystable
Safe HaskellNone
LanguageHaskell2010

Parsley.Internal.Bridge

Description

The plugins in this package depend on internals defined in parsley-core. This is fine, but we'd prefer our users to not have to explicitly depend on parsley-core to use the plugins. This module is used to provide stable names for the plugins to latch onto. It should not be imported by users of the plugins!

Synopsis

Documentation

_code :: Quapplicative q => q a -> Code a Source #

Re-export of _code

_val :: Quapplicative q => q a -> a Source #

Re-export of _val

makeQ :: Quapplicative q => a -> Code a -> q a Source #

Re-export of makeQ

mkVal :: Quapplicative q => a -> q a Source #

Produces Quapplicative values without code (unsafe!)

mkCode :: Quapplicative q => Code a -> q a Source #

Produces Quapplicative values without values (unsafe!)