More accurate extension pragmas

This commit is contained in:
Derek Elkins 2008-01-20 06:39:18 +00:00
parent 3f1095204e
commit 667aa50d75
2 changed files with 2 additions and 4 deletions

View File

@ -13,8 +13,6 @@
--
-----------------------------------------------------------------------------
{-# LANGUAGE ExistentialQuantification #-}
module Text.Parsec.Expr
( Assoc(..), Operator(..), OperatorTable
, buildExpressionParser

View File

@ -6,13 +6,13 @@
--
-- Maintainer : derek.a.elkins@gmail.com
-- Stability : provisional
-- Portability : non-portable (uses existentially quantified data constructors)
-- Portability : non-portable (uses local universal quantification: PolymorphicComponents)
--
-- A helper module to parse lexical elements (tokens).
--
-----------------------------------------------------------------------------
{-# LANGUAGE ExistentialQuantification #-}
{-# LANGUAGE PolymorphicComponents #-}
module Text.Parsec.Token
( LanguageDef