diff options
author | Geoffrey Mainland <mainland@apeiron.net> | 2013-05-31 12:42:16 +0100 |
---|---|---|
committer | Geoffrey Mainland <mainland@apeiron.net> | 2013-10-04 14:58:26 -0400 |
commit | 6b676e799c55a86328c2b7955b9fbba37415f00e (patch) | |
tree | 19f6ffc4fe1f4472e41a5fa2baa99c1fd494ef62 /libraries | |
parent | 9caca0a3fe0ad9c38ea5886d4edf4fc8cbf7c567 (diff) | |
download | haskell-6b676e799c55a86328c2b7955b9fbba37415f00e.tar.gz |
Add the TExpQ type alias.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/template-haskell/Language/Haskell/TH/Lib.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/template-haskell/Language/Haskell/TH/Lib.hs b/libraries/template-haskell/Language/Haskell/TH/Lib.hs index 2480ff35a0..38a86d5ed7 100644 --- a/libraries/template-haskell/Language/Haskell/TH/Lib.hs +++ b/libraries/template-haskell/Language/Haskell/TH/Lib.hs @@ -20,6 +20,7 @@ type InfoQ = Q Info type PatQ = Q Pat type FieldPatQ = Q FieldPat type ExpQ = Q Exp +type TExpQ a = Q (TExp a) type DecQ = Q Dec type DecsQ = Q [Dec] type ConQ = Q Con |