From 321b781e299a875930af64076d21d1ba9567febb Mon Sep 17 00:00:00 2001 From: mrkkrp Date: Sun, 27 Sep 2015 14:46:12 +0600 Subject: [PATCH] =?UTF-8?q?refresh=20values=20of=20=E2=80=9CPortability?= =?UTF-8?q?=E2=80=9D=20field?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘Text.Megaparsec.Prim’ cannot be considered portable since it uses multi-parameter type classes and functional dependencies. Other modules that depend on these non-portable features from ‘Text.Megaparsec.Prim’ should be considered non-portable too. --- Text/Megaparsec/Char.hs | 2 +- Text/Megaparsec/Lexer.hs | 2 +- Text/Megaparsec/Perm.hs | 2 +- Text/Megaparsec/Prim.hs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Text/Megaparsec/Char.hs b/Text/Megaparsec/Char.hs index 4719e57..720762c 100644 --- a/Text/Megaparsec/Char.hs +++ b/Text/Megaparsec/Char.hs @@ -7,7 +7,7 @@ -- -- Maintainer : Mark Karpov -- Stability : experimental --- Portability : portable +-- Portability : non-portable -- -- Commonly used character parsers. diff --git a/Text/Megaparsec/Lexer.hs b/Text/Megaparsec/Lexer.hs index e1d085b..fc4053f 100644 --- a/Text/Megaparsec/Lexer.hs +++ b/Text/Megaparsec/Lexer.hs @@ -7,7 +7,7 @@ -- -- Maintainer : Mark Karpov -- Stability : experimental --- Portability : non-portable (uses local universal quantification: PolymorphicComponents) +-- Portability : non-portable -- -- High-level parsers to help you write your lexer. The module doesn't -- impose how you should write your parser, but certain approaches may be diff --git a/Text/Megaparsec/Perm.hs b/Text/Megaparsec/Perm.hs index 6f56b1e..39ef67e 100644 --- a/Text/Megaparsec/Perm.hs +++ b/Text/Megaparsec/Perm.hs @@ -7,7 +7,7 @@ -- -- Maintainer : Mark Karpov -- Stability : experimental --- Portability : non-portable (uses existentially quantified data constructors) +-- Portability : non-portable -- -- This module implements permutation parsers. The algorithm is described -- in: /Parsing Permutation Phrases/, by Arthur Baars, Andres Loh and diff --git a/Text/Megaparsec/Prim.hs b/Text/Megaparsec/Prim.hs index 7248d85..8a123d0 100644 --- a/Text/Megaparsec/Prim.hs +++ b/Text/Megaparsec/Prim.hs @@ -7,7 +7,7 @@ -- -- Maintainer : Mark Karpov -- Stability : experimental --- Portability : portable +-- Portability : non-portable (MPTC with FD) -- -- The primitive parser combinators.